I'm in china, and can not get into vim-dev of google groups. And I can not click that blue button to subscribe. So please add stevenfrog@... into...
131413
Pablo Giménez
pablogipi@...
May 31, 2012 2:23 pm
Hello all. Is there any way to enable ANSI colors in a shell spawned from VIM using the :shell command? I just got the ANSI codes rather than the colors like...
131414
Ben Fritz
fritzophrenic@...
May 31, 2012 2:57 pm
... Huh? I've got my keyboard (a standard QWERTY keyboard) mapped to US-Dvorak in Windows XP, and to get CTRL-] I press CTRL and the key labelled =/+, not the...
131415
Christian Brabandt
cblists@...
May 31, 2012 3:03 pm
... Isn't that what Jürgen said? On a German keyboard (at least for Windows) you need to press Ctrl-ü rather then the key labeld ] to produce an actual...
131416
Gary Johnson
garyjohn@...
May 31, 2012 3:51 pm
... If you start Vim as vim, not gvim, in a terminal, then yes. If you start Vim as gvim, either in a terminal or from a GUI launcher, then no. Regards, Gary ...
131417
ping
songpingemail@...
May 31, 2012 5:41 pm
hi chris: this works! thanks! regards ping ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you...
131418
Ben Fritz
fritzophrenic@...
May 31, 2012 5:55 pm
... We may be talking about different ways of getting a non-standard keyboard. I think I understand now, that you and Jürgen are talking about a keyboard...
131419
Ben Fritz
fritzophrenic@...
May 31, 2012 6:01 pm
... I don't understand what you're trying to achieve. ... If you want to do something else, please try to tell us SPECIFICALLY what you are trying to do, what...
131420
ping
songpingemail@...
May 31, 2012 6:32 pm
stefen: I'm using vim Utl plugin and enjoy it. http://www.vim.org/scripts/script.php?script_id=293 but today I run into an issue here. so if I use this in my...
131421
Pablo Giménez
pablogipi@...
May 31, 2012 9:00 pm
... Well I use vim in both ways. So what is the way to solve it when I start as vim? And when I start as gvim is there any way to start a terminal that doesn't...
131422
Gary Johnson
garyjohn@...
May 31, 2012 9:55 pm
... It should "just work". It could be that your TERM environment variable is not being exported. In the :shell shell, execute echo $TERM If that doesn't...
131423
stardiviner
numbchild@...
Jun 1, 2012 1:10 am
I want to learn Vimscript language, but I have not found any books about this. If you have any good suggest, tell me anything about this. Thanks very much. -- ...
131424
zhang listar
listarmingstar@...
Jun 1, 2012 1:25 am
... There, you got it. -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more...
... Go through ":help eval_41.txt" and ":help eval.txt" In addition to Vim help, there is this page which looks good: ...
131426
stardiviner
numbchild@...
Jun 1, 2012 2:23 am
Thanks. -- [ stardiviner ] ^^&^^ {I hate all of you ! Leave me alone} IRC(freeenode): stardiviner \\ Twitter: @numbchild \\ GnuPG Key fingerprint...
131427
唿™“泉
u1mail2me@...
Jun 1, 2012 2:32 am
there have some book like 《hacking vim 7.2》and some online source like http://www.ibm.com/developerworks/linux/library/l-vim-script-1/index.html ... -- You...
131428
Scott
scott@...
Jun 1, 2012 3:38 am
Hi Jan, I'd like to be able to make Vim focus the left tab too (after closing a tab). Did you find a way to do it without having to use a new command? Scott....
131429
Tony Mechelynck
antoine.mechelynck@...
Jun 1, 2012 5:09 am
... The above works, yet it is still too restrictive. ... might work even better (find the same base font, possibly also the corresponding italic and/or bold...
131430
sinbad
sinbad.sinbad@...
Jun 1, 2012 5:23 am
hi, can the insert mode mappings be made available for the text entered during searches / and ?. and also for the text entered as part of input() fn ? cheers ...
131431
Gary Johnson
garyjohn@...
Jun 1, 2012 5:38 am
... Input mode mappings do not apply in those contexts. Use command mode mappings instead. Regards, Gary -- You received this message from the "vim_use"...
131432
Jürgen Krämer
jottkaerr@...
Jun 1, 2012 5:45 am
Hi, ... use :map! and :noremap! instead of :imap and :inoremap if you want to use a mapping in insert and command-line mode. Note that this also makes the...
131433
Jürgen Krämer
jottkaerr@...
Jun 1, 2012 5:48 am
Hi, ... correction: mappings defined with :cmap and :map! also work while typing the text for calls to input(). Regards, Jürgen -- Sometimes I think the...
131434
oversky
mailcwc@...
Jun 1, 2012 5:51 am
Thank you. This works for me. I check index.txt again. This key mapping is not shown in visual mode part. So it never come it my mind that I can do this. ... ...
131435
monax
monax.tinycode@...
Jun 1, 2012 6:54 am
... Sorry, I forgot show to example. I use python: #green try: # red if True: pass # red else: pass #green except Exception, e: raise e # red, but I want to...
131436
sinbad
sinbad.sinbad@...
Jun 1, 2012 8:04 am
how to turn on/off the caps lock while in insert mode. i want to turn off the caps lock while leaving out of the insert mode. how can i do that. i googled...
131437
Tony Mechelynck
antoine.mechelynck@...
Jun 1, 2012 9:02 am
... AFAIK, CapsLock on/off status is handled by the keyboard driver transparently to Vim. I don't think Vim can simulate that action. You might build a lot of...
131438
Christian Brabandt
cblists@...
Jun 1, 2012 9:11 am
... If you find a way, to turn on/off caps-lock via a script, you could call that script from an InsertEnter/Leave autocommand. Apart from that, there is...
131439
Alexey
muranov@...
Jun 1, 2012 10:10 am
Hello, is it possible to limit (say to 3) the number of empty lines shown after the EOF when scrolling down with a mouse in Vim GUI? 'scrolloff39; has no effect...
131440
Tim Chase
vim@...
Jun 1, 2012 10:17 am
... Just a caveat that InsertLeave doesn't execute if you're leaving Insert mode via control+C -tim -- You received this message from the "vim_use" maillist. ...
131441
Paul
google01239@...
Jun 1, 2012 10:27 am
... Hi Mary, Haven't have the time yet :/ -- . -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you...