If I have two files open to test a colorscheme, the only way I can get a true view of the scheme, without artifacts from the previous, is to run: syntax reset ...
134745
richard emberson
richard.emberson@...
Nov 28, 2012 5:19 am
http://www.vim.org/scripts/script.php?script_id=4240 ... -- Quis custodiet ipsos custodes -- You received this message from the "vim_use" maillist. Do not...
134746
Steve
dlist@...
Nov 28, 2012 6:16 am
... Great tip Tony, many thanks ! Have a nice day, steve -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the...
134747
Johannes Deutsch
j_deutsch@...
Nov 28, 2012 10:05 am
Hello list, at the momemt I dive into gtk development and use vim to write the code. To simplify my work i have been thinking about creating a new filetype ...
134748
Andy Wokula
anwoku@...
Nov 28, 2012 1:29 pm
... => create filetype scripts for "gtk", then use a modeline in your source files: /* vim:set ft=c.gtk: */ ... This will load ftplugin and syntax scripts for...
134749
Johannes Deutsch
j_deutsch@...
Nov 28, 2012 2:00 pm
On Wed, 28 Nov 2012 14:28:47 +0100 ... That's exactly what i was looking for! Thanks a lot for your answer... best regards -- You received this message from...
134750
Marcin Szamotulski
mszamot@...
Nov 28, 2012 2:09 pm
Hello, I really like the command CTRL-Wp to jump to the previous window. In one of me plugins I jump to another window and come back. This unfortunately...
134751
Salman Halim
salmanhalim@...
Nov 28, 2012 2:28 pm
... I do this: let t:lastWindow = winnr() " When changing tabs, the WinLeave also gets called, changing the last window to what is actually the current...
134752
Johannes Deutsch
j_deutsch@...
Nov 28, 2012 3:21 pm
Hello list, related to the generation of a tags file via ctags one finds almost always the following options switched on (googling for "vim ctags field"): ...
134753
Tony Mechelynck
antoine.mechelynck@...
Nov 28, 2012 4:05 pm
... The taglist() function returns a List of Dictionaries (one Dictionary per matching tag) which (IIUC) gives you access to this info. see :help taglist() ...
134754
Matt Martini
matt.martini@...
Nov 28, 2012 4:31 pm
I have an autocmd that I would like to trigger for all files, except a certain file. Is there a way to write this? I'm thinking something like: autocmd...
134755
Chris Lott
chris@...
Nov 28, 2012 4:41 pm
... I think this basically answers your question: http://stackoverflow.com/questions/6496778/vim-run-autocmd-on-all-filetypes-except c -- Chris Lott...
134756
Salman Halim
salmanhalim@...
Nov 28, 2012 5:18 pm
... If you really want to exclude on a specific file or pattern by name--say, all *.vim EXCEPT a*.vim--you could check expand("<afile>") in an if condition....
134757
Andy Wokula
anwoku@...
Nov 28, 2012 7:23 pm
... Hints: - items starting with `\' are used like in regexp patterns - the item to match any character is `?', even within `\(...92;)'; the dot `.' matches `.'...
134758
Matt Martini
imaginarywave@...
Nov 28, 2012 10:04 pm
... Worked like a charm, thanks! -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to....
134759
Ben Fritz
fritzophrenic@...
Nov 28, 2012 10:07 pm
... I didn't know you could use regex patterns in autocmds. The only indication I see of this fact is from :help file-patterns: \ special meaning like in a...
134760
rams
rameshwari.s@...
Nov 29, 2012 2:13 am
Hello, I am looking for End of Life and End of Support dates for: VIM 7 VIM 7.3.46 Can you please share the info for this? Thanks in advance! -- You received...
134761
Tony Mechelynck
antoine.mechelynck@...
Nov 29, 2012 2:56 am
... AFAIK, 7.0 and 7.3.46 are already at EOL. OTOH, if by "Vim 7" you mean the set of Vim releases starting at 7.0 and extending until but not including 8.0,...
134762
Gary Johnson
garyjohn@...
Nov 29, 2012 4:12 am
... I am not an official spokesman for Vim. The following is just my perspective. I don't know what those terms mean in the context of an open source project...
134763
David Barnett
daviebdawg@...
Nov 29, 2012 5:42 am
I've implemented my own BufReadCmd autocmds to fetch certain remote files, similar to "scp://". In normal mode, I can put the cursor over...
134764
John Beckett
johnb.beckett@...
Nov 29, 2012 10:57 am
Does anyone have an archive of mail which includes the spam that we receive from admin@...? I need to know when that spam started. I kept a few messages,...
134765
Charles Campbell
Charles.E.Campbell@...
Nov 29, 2012 3:03 pm
... Bram has accepted my patch into vim (7.3.734). So, enjoy! Regards, Chip Campbell -- You received this message from the "vim_use" maillist. Do not...
134766
Marc Jessome
marc.jessome@...
Nov 29, 2012 3:26 pm
Hello, I often "grep -rn" and want to easily use the "filename:line:" output as a filename to vim. Is there any way that I can have vim see "main.c:595" and...
134767
Christian Brabandt
cblists@...
Nov 29, 2012 3:32 pm
... I think, this plugin should do what you want: http://www.vim.org/scripts/script.php?script_id=2184 regards, Christian -- You received this message from the...
134768
Marc Jessome
marc.jessome@...
Nov 29, 2012 3:34 pm
Excellent, thanks very much Christian! Cheers, Marc ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the...
134769
Ben Fritz
fritzophrenic@...
Nov 29, 2012 3:55 pm
... Some open-source projects (like Python, for example) have a cutting-edge version but also release security updates, etc. for older versions. So you can...
134770
Ven Tadipatri
vtadipatri@...
Nov 29, 2012 8:41 pm
On Thu, Nov 15, 2012 at 8:31 AM, Tony Mechelynck ... Hi Antoine, I'm not really that familiar with the different encoding types (UTF-8, UTF-16, etc), but when...
134771
Ben Fritz
fritzophrenic@...
Nov 29, 2012 9:16 pm
... This strange character is the byte-order-mark ( http://en.wikipedia.org/wiki/Byte_order_mark ). The exact byte sequence you see indicates the file is in...
134772
Marcin Szamotulski
mszamot@...
Nov 29, 2012 9:18 pm
... Hi, This is the bom (byte order mark) character: http://en.wikipedia.org/wiki/Byte_order_mark <feff> is the BOM character for UTF-16 encoding. UTF-16 uses...
134773
Tony Mechelynck
antoine.mechelynck@...
Nov 29, 2012 10:15 pm
... From time to time, but not at this precise moment, development has happened on some "future code branch" of Vim, which was then labeled as either "alpha"...