Re: Patch 7.4.465

2014-10-07 Fir de Conversatie Bram Moolenaar
Toothpik wrote: On Mon, Oct 06, 2014 at 06:41:21PM +0200, Bram Moolenaar wrote: Patch 7.4.465 (after 7.4.016) when I point my browser (firefox) at https://code.google.com/p/vim/source/browse/src/version.c to see if 465 is in there all it shows me is 464, and that's what I get

Re: Issue 190 in vim: gx won't launch urls contained in parentheses

2014-10-07 Fir de Conversatie vim
Comment #4 on issue 190 by stoorband: gx won't launch urls contained in parentheses https://code.google.com/p/vim/issues/detail?id=190 This bug should not be too difficult to solve given the fact that URI/URL detection works with both [foo](http://www.foo.com) and http://www.foo.com for

ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie Martin Tournoij
Hi there, ftplugin/python.vim and indent/sass.vim (and perhaps others...) reset some settings from my vimrc My ~/.vimrc has: set noexpandtab set tabstop=4 set shiftwidth=4 set softtabstop=4 ftplugin/python.vim does: setlocal expandtab shiftwidth=4 softtabstop=4 tabstop=8

Re: ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie Christian Brabandt
On Di, 07 Okt 2014, Martin Tournoij wrote: ftplugin/python.vim and indent/sass.vim (and perhaps others...) reset some settings from my vimrc My ~/.vimrc has: set noexpandtab set tabstop=4 set shiftwidth=4 set softtabstop=4 ftplugin/python.vim does: setlocal

Re: ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie Martin Tournoij
If you want your own settings and never want to have filetype plugins enabled, do NOT set the :filetype plugin command in your .vimrc (so ftplugins are effectively disabled). Alternatively you can override those settings for specific filetypes by creating your own after/ftplugin.vim

Re: Issue 190 in vim: gx won't launch urls contained in parentheses

2014-10-07 Fir de Conversatie vim
Updates: Status: Invalid Comment #5 on issue 190 by drc...@campbellfamily.biz: gx won't launch urls contained in parentheses https://code.google.com/p/vim/issues/detail?id=190 Please try v153s of netrw (http://www.drchip.org/astronaut/vim/index.html#NETRW). gf is a built-in

Re: ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie toothpik
On Tue, Oct 07, 2014 at 03:46:56PM +0200, Martin Tournoij wrote: If you want your own settings and never want to have filetype plugins enabled, do NOT set the :filetype plugin command in your .vimrc (so ftplugins are effectively disabled). Alternatively you can override those settings

Re: Issue 190 in vim: gx won't launch urls contained in parentheses

2014-10-07 Fir de Conversatie vim
Comment #6 on issue 190 by jszakmei...@gmail.com: gx won't launch urls contained in parentheses https://code.google.com/p/vim/issues/detail?id=190 I ran into this issue too, and solved it by creating my own SmartOpen and mapping gx to it:

Re: ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie Christian Brabandt
On Di, 07 Okt 2014, Martin Tournoij wrote: I think there is a difference; ftplugin files almost always sets useful, filetype-specific stuff. A quick grep on setlocal shows that it usually just sets comments, foldexpr, formatoptions, etc. These things are what almost everyone wants,

Re: Issue 263 in vim: Malformed YAML hogs CPU for a long time

2014-10-07 Fir de Conversatie vim
Updates: Labels: Runtime Comment #1 on issue 263 by chrisbr...@googlemail.com: Malformed YAML hogs CPU for a long time https://code.google.com/p/vim/issues/detail?id=263 Looks like the yamlFlowMappingKey syntax item is taking too long. Please report the issue to the maintainer of

Re: nowait is not highlighted (syntax/vim.vim)

2014-10-07 Fir de Conversatie Charles Campbell
Kenichi Ito wrote: Hi Chip, I tried vim.vim v7.4-30 in your website, but nowait is not highlighted. This patch fixes it. --- diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim index e86611a..b9b815c 100644 --- a/runtime/syntax/vim.vim +++ b/runtime/syntax/vim.vim @@ -327,7 +327,7 @@

conceal, cchar, and combining characters

2014-10-07 Fir de Conversatie Charles Campbell
Hello: I recently received a request that $\bar{a}$ be supported: ie. it should be conceal-char'd and appear as a: a̅ So I tried syn match texMathSymbol '\\bar{a}' contained conceal cchar=a̅ but this construct doesn't produce the desired output: instead, it shows an a instead.

Re: ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie glts
On Tuesday, October 7, 2014 3:47:04 PM UTC+2, Martin Tournoij wrote: If you want your own settings and never want to have filetype plugins enabled, do NOT set the :filetype plugin command in your .vimrc (so ftplugins are effectively disabled). Alternatively you can override those

Re: nowait is not highlighted (syntax/vim.vim)

2014-10-07 Fir de Conversatie Charles Campbell
Charles Campbell wrote: Hello: Looks like I somehow omitted including it. Anyway, please try the attached syntax/vim.vim . Sorry about that, listers -- another case of my intending to respond to one person but spamming the entire list instead. Regards, Chip Campbell -- -- You received

Re: nowait is not highlighted (syntax/vim.vim)

2014-10-07 Fir de Conversatie James McCoy
On Tue, Oct 07, 2014 at 04:03:53PM -0400, Charles Campbell wrote: Charles Campbell wrote: Hello: Looks like I somehow omitted including it. Anyway, please try the attached syntax/vim.vim . Sorry about that, listers -- another case of my intending to respond to one person but spamming the

Re: Issue 51 in vim: CSS Syntax structure incompatible with extended syntaxes (eg less)

2014-10-07 Fir de Conversatie vim
Comment #6 on issue 51 by w.jq0...@gmail.com: CSS Syntax structure incompatible with extended syntaxes (eg less) https://code.google.com/p/vim/issues/detail?id=51 You are right, there is no less.vim in vim. That's surprising, I will commit one. -- You received this message because this

Re: ftplugin/python.vim indent/sass.vim overwrites my expandtab/tabstop settings

2014-10-07 Fir de Conversatie Marius Gedminas
On Tue, Oct 07, 2014 at 04:30:03PM +0200, Christian Brabandt wrote: On Di, 07 Okt 2014, Martin Tournoij wrote: I think there is a difference; ftplugin files almost always sets useful, filetype-specific stuff. A quick grep on setlocal shows that it usually just sets comments, foldexpr,