Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 130683 - 130712 of 137832   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
130683 pixelterra
red@... Send Email
Apr 28, 2012
6:49 am
I recently found this out: "Suppose you typed a longer command and you noticed that you had made several mistakes, and wanted to do the correction in the vi...
130684 Tim Chase
vim@... Send Email
Apr 28, 2012
6:56 am
... Are you sure you mean typing "v" to edit the command? Usually it defaults to control+F on the command-line (assuming you haven't changed the value for...
130685 Tony Mechelynck
antoine.mechelynck@... Send Email
Apr 28, 2012
7:00 am
... The first thing is to check your configure listing for possible missing software packages. Maybe gtk2-devel (or gtk2-dev or similar depending on ...
130686 pixelterra
red@... Send Email
Apr 28, 2012
7:00 am
... -- 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 information, visit...
130687 Tony Mechelynck
antoine.mechelynck@... Send Email
Apr 28, 2012
7:03 am
... What happens if you leave Insert mode (e.g. by <Esc>) then type :x (followed by <Enter>) in your Vim editor? Best regards, Tony. -- Pittsburgh Driver's...
130688 Taylor Hedberg
tmhedberg@... Send Email
Apr 28, 2012
7:06 am
... *:x* *:xit* ... Like ":wq", but write only when changes have been made. When 'hidden&#39; is set and there are more windows, the current buffer becomes hidden,...
130689 Pablo Giménez
pablogipi@... Send Email
Apr 28, 2012
7:08 am
2012/4/27 Marc Weber <marco-oweber@...> ... Yep I think I am going to try this route . ... This is also what I think about how to develop plugins, problem...
130690 pixelterra
red@... Send Email
Apr 28, 2012
7:11 am
Actually, I was wrong, this doesn't work. Sorry for the confusion. Any other options? -- You received this message from the "vim_use" maillist. Do not...
130691 pixelterra
red@... Send Email
Apr 28, 2012
7:16 am
... Tim, I mean I'm on the linux command line in set -o vi mode. You can do basic editing there, but anything more complex you can type 'v' and it will open...
130692 Tim Chase
vim@... Send Email
Apr 28, 2012
7:21 am
Sorry...I didn't see the entire subject line on my screen and assumed you were talking about Vim. The bash vi mode ("set -o vi") is a separate beast. ... ...
130693 rameo
raiwil@... Send Email
Apr 28, 2012
7:27 am
... Thank you very much. Just one little thing.. What I noted is that when I have a split window it gives the default colorscheme (that's ok) but I would like...
130694 Andrei Zmievski
andrei@... Send Email
Apr 28, 2012
7:30 am
That would probably be the simplest solution, since it's so simple to enter the Insert mode when coming back to the tab. -Andrei ... -- You received this...
130695 Linda W
vim@... Send Email
Apr 28, 2012
7:36 am
... Dang if I didn't transpose those and download 5.14.2... Is there a reason why it can't be made a bit more general? I know on *nix, when you 'dlopen a lib,...
130696 rameo
raiwil@... Send Email
Apr 28, 2012
7:37 am
... Yes I mean another window in the current tab. But after an hour of reading help-files I don't have an idea how to adapt the script, sorry. -- You received...
130697 rameo
raiwil@... Send Email
Apr 28, 2012
7:43 am
I use this code in my .vimrc to use my dark colorscheme when I open a .vim page and my light colorscheme when I open whatever other page: augroup...
130698 Tony Mechelynck
antoine.mechelynck@... Send Email
Apr 28, 2012
7:46 am
... Well, it is possible, with a slight refinement to the above. You may want to remember the Vim terminology: - buffer: one file (or file-like data) in Vim...
130699 Charles Campbell
Charles.E.Campbell@... Send Email
Apr 28, 2012
7:50 am
... Please try v146g -- I was able to duplicate what you saw under Linux. * when you selected master1.bib, that was in fact the only file that was selected....
130700 Gary Johnson
garyjohn@... Send Email
Apr 28, 2012
7:51 am
Minor correction. ... ^ \ ... Regards, Gary -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
130701 Gary Johnson
garyjohn@... Send Email
Apr 28, 2012
7:53 am
... What do you mean, "this doesn't work"? If you mean you still want to have the edited command on the command line and not executed when you exit vim, I...
130702 rameo
raiwil@... Send Email
Apr 28, 2012
7:55 am
... Hi Ben, That's what I tried. But wherever I put it in above code it doesn't work. Where would you place this in above code? -- You received this message...
130703 Tony Mechelynck
antoine.mechelynck@... Send Email
Apr 28, 2012
7:57 am
... You could use some b: variable to remember the mode, and define a BufLeave autocommand to remember the current mode and a BufEnter autocommand to set the...
130704 Tony Mechelynck
antoine.mechelynck@... Send Email
Apr 28, 2012
7:58 am
... Around your autocommand: augroup filetype_colorscheme au BufEnter * \ if winnr('$') == 1 \ | if !exists('b:colors_name') \ | if &ft == "vim" \ | let...
130705 John Little
John.B.Little@... Send Email
Apr 28, 2012
8:05 am
... It should. Have you got any of VISUAL, EDITOR or FCEDIT set? (A pitfall is to set one of these to just "gvim", which won't work, "gvim -f" is needed.) Is...
130706 Ben Fritz
fritzophrenic@... Send Email
Apr 28, 2012
8:05 am
... Maybe. Checking the help, I think I understand: autoindent has no effect if smartindent, cindent, or indentexpr is set smartindent has no effect if cindent...
130707 rameo
raiwil@... Send Email
Apr 28, 2012
8:05 am
... When I hit Ctrl-K in insert mode followed by Ctrl-ň nothing happened. When I hit Ctrl-Q (I have the gvim win version) in insert mode followed by Ctrl-ň...
130708 Pablo Giménez
pablogipi@... Send Email
Apr 28, 2012
8:12 am
2012/4/27 lith <minilith@...> ... Cool I have missed this feature from the docs. ... How can I use this? I understand TPluginDependencies only accepts...
130709 Taylor Hedberg
tmhedberg@... Send Email
Apr 28, 2012
10:34 am
... When you save the buffer and quit the editor, the shell then executes the contents of the saved buffer. So it happens automatically....
130710 Sergey Vakulenko
svakulenko.a@... Send Email
Apr 28, 2012
11:02 am
The problem is solved ! In this thread you can take a patch from Christian Brabandt which make possible behavior described in Subject and test case. ...
130711 Andrei Zmievski
andrei@... Send Email
Apr 28, 2012
11:03 am
I originally noticed this in MacVim, but turns out this happens in the terminal as well. If you have two tabs open and enter the Insert mode in one, then...
130712 rameo
raiwil@... Send Email
Apr 28, 2012
11:05 am
I still have problems mapping keys. On my keyboard I have these keys I want to map: <C-ň> <C-ŕ> <C-č> <C-ů> <C-ě> Tony once told in a message these info: ...
Messages 130683 - 130712 of 137832   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help