Hi all :) Usually in my scripts I use constructs like this (just an example): nnoremap <silent><buffer> <LocalLeader>KEY m'gg"+yG'39; imap <silent><buffer>...
114182
Kim Schulz
kim@...
May 2, 2010 11:59 am
Hi, I just came across a site about Zen-Coding today. http://code.google.com/p/zen-coding/ Basically it is some quite clever abbreviations to use in textMate...
114183
John Little
john.b.little@...
May 2, 2010 12:17 pm
On May 2, 10:45 pm, Raúl Núñez de Arenas Coronado <raul...@...> ... How about a level of indirection using :exe : let mapped = "<silent><buffer>...
114184
Gregor Uhlenheuer
kongo2002@...
May 2, 2010 12:23 pm
... Hi, there is a plugin that probably does what you are looking for: ZenCoding.vim http://www.vim.org/scripts/script.php?script_id=2981 Cheers, Gregor -- You...
114185
Raúl Núñez de A...
raulnac@...
May 2, 2010 12:44 pm
... -- Raúl "DervishD" Núñez de Arenas Coronado Linux Registered User 88736 | http://www.dervishd.net The revolution will not be televised -- You received...
114186
Harry Putnam
reader@...
May 2, 2010 2:42 pm
My setup: Linux (gentoo) 2.6.33-gentoo vim VIM - Vi IMproved 7.2 compile info inlined at the end of this post For some time now I've been noticing when I...
114187
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 3:03 pm
... syn match Brackets '[](){}[]' where [ open collection ] match closing bracket ( match opening paren ) match closing paren { match opening brace } match...
114188
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 3:10 pm
... Beware that you should NEVER change ANYTHING in the $VIMRUNTIME directory tree (i.e. in the $VIMRUNTIME directory or under it at any depth), because any...
114189
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 5:31 pm
... According to ":help 'paste39;", setting paste is not necessary in gvim, nor in a terminal where Vim handles the mouse clicks itself. So: are you sure you're...
114190
Jack Donohue
jmdonohue@...
May 2, 2010 5:33 pm
... From: "Charles E Campbell Jr" <drchip@...> To: <vim_use@googlegroups.com> Sent: Friday, April 30, 2010 10:44 PM Subject: Re: Strange problem...
114191
Bram Moolenaar
Bram@...
May 2, 2010 5:37 pm
... That sounds like the best way to go. Does NSIS have a feature to detect Windows being 32 or 64 bit? Then we should be able to install the right version...
114192
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 5:52 pm
... Ctrl-O and Ctrl-Shift-O are both 0x0F; if you map them to different {rhs}es, the last one wins. Also, this hides the standard meaning of Ctrl-O, namely,...
114193
Jack Donohue
jmdonohue@...
May 2, 2010 7:06 pm
... So, I found that this line: exe 'silent !start rundll32 url.dll,FileProtocolHandler '.shellescape(fname,1) is not working for some reason. I added: call...
114194
Paul
paulwired@...
May 2, 2010 7:33 pm
I've never scripted Vim before, but I took a stab at this. Here's a version I put in my after/mail.vim. Could be better, especially the fudged detection of...
114195
Aryeh M. Friedman
aryeh.friedman@...
May 2, 2010 8:30 pm
I am able to on a per file basis turn off the &*(^&*^( leading comment and such autoinsert feature (i.e. when editting do ":set fo=") but when I do the same in...
114196
Peng Yu
pengyu.ut@...
May 2, 2010 8:35 pm
On May 2, 12:52 pm, Tony Mechelynck <antoine.mechely...@...> ... Why Ctrl-O and Ctrl-Shift-O can not be distinguished? I can not use F8 as my vncviewer...
114197
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 8:49 pm
... I think this is normal. 'formatoptions' is one of those options which is expected to be set differently for files of different 'filetype39;s. Therefore, most...
114198
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 9:07 pm
... Because that's how ASCII defined the control characters long ago. Basically, 0x00 to 0x1F correspond to Ctrl together with 0x40 to 0x5F respectively, but...
114199
Tony Mechelynck
antoine.mechelynck@...
May 2, 2010 11:01 pm
... Well, it is true that Bram's C coding style (as exemplified by the Vim source) always puts every single brace alone on its line, with nothing else on the...
114200
Peng Yu
pengyu.ut@...
May 2, 2010 11:55 pm
I want to define a key shortcut switch the line above the cursor and the line below the cursor without affecting what is in the buffer (I mean the things...
114201
Tim Chase
vim@...
May 3, 2010 12:16 am
... to move a line up/down without touching my registers. I usually use only the former because (1) it's easier for me to remember, (2) it's shorter for me to...
114202
Peng Yu
pengyu.ut@...
May 3, 2010 12:35 am
I'm wondering where if there is any guideline in defining commands in vim. I've looked at index.txt. Although I could come up a command name and check it...
114203
xiaweitang
jadelightking@...
May 3, 2010 12:40 am
Hi, I have been using vim, then emacs, now vim again. In emacs, I can still use the editing commands like Alt+B in the command windows (mini buffer), but in...
114204
Stahlman Family
brettstahlman@...
May 3, 2010 12:46 am
... Hope it helps... Brett Stahlman -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying...
114205
Marc Weber
marco-oweber@...
May 3, 2010 12:50 am
... The mini-buffer is a commandline only. So it even has its own set of mappings, eg tab completion support. However you can make it behave like a vim buffer...
114206
KKde
khekadestroyer@...
May 3, 2010 4:10 am
Hi, \afnc map defined in Dr. chip's align.vim plugin doesn't work as expected. when I execute the map vim hangs. I need to press CTRL-c to unhang it. does...
114207
Lissa Aguilar
lissa.aguilar@...
May 3, 2010 4:45 am
... From: Lissa Aguilar <lissa.aguilar@...> Date: Sun, May 2, 2010 at 10:04 PM Subject: Re: You have joined the group vim_use@googlegroups.com To:...
114208
kp
kv.krishnaprasad@...
May 3, 2010 4:52 am
Hi Lissa, You can set set nobackup in the .cshrc or _cshrc file. Then the backup files won't be created. Cheers, Krishna ... -- You received this message from...
114209
Tony Mechelynck
antoine.mechelynck@...
May 3, 2010 5:12 am
... 1. Next time, when you have a new question, please ask it by creating a new thread with a descriptive subject, not by replying to something unrelated. See...
114210
John Beckett
johnb.beckett@...
May 3, 2010 7:54 am
The May edition of the Vim Tips home page is now available: http://vim.wikia.com/wiki/Vim_Tips_Wiki The featured tip reminds us about the use of I and A in a ...