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@...
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@...
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@...
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@...
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@...
Apr 28, 2012 7:06 am
... *:x* *:xit* ... Like ":wq", but write only when changes have been made. When 'hidden39; is set and there are more windows, the current buffer becomes hidden,...
130689
Pablo Giménez
pablogipi@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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: ...