Hi, everyone How can I remove the error message 'Pattern not found' after omni completion ? What I want is that there's no need to press any key to quit the...
135955
Gary Furash
furashgary@...
Feb 3, 2013 2:21 pm
Thank you! This is 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...
135956
Benjamin Isbarn
babene88@...
Feb 3, 2013 5:30 pm
Hi, I'm currently investing some time learning vim and setting my .vimrc up. Doing so I've come across a problem I couldn't solve myself. I'm using the ...
135957
hilal Adam
hilaldm@...
Feb 4, 2013 12:54 am
What's new? %LINKhilal Adam ................ -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you...
135958
alijaan
alijohnshaik@...
Feb 4, 2013 3:51 am
Thanks Christian Yeah its wroking fine ... -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
135959
jcordes
johncordes@...
Feb 4, 2013 1:47 pm
... Thank you Tim. John -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For...
135960
Ven Tadipatri
vtadipatri@...
Feb 4, 2013 3:49 pm
Is there a difference between new and split? If they're the same, is one considered more 'standard39;? Or if they're different, when would you use one versus the...
135961
Ben Fritz
fritzophrenic@...
Feb 4, 2013 4:00 pm
... Unfortunately the misbehavior of the completion menu in the presence of folds is a known unfixed bug. ... popup completion menu closes quickly when there...
135962
Gary Furash
furashgary@...
Feb 4, 2013 4:01 pm
... I installed it and it's working fine! -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
135963
Jürgen Krämer
jottkaerr@...
Feb 4, 2013 4:02 pm
Hi, ... their behavior is the same if you provide both commands with a file name. If you don't, :split creates a new window for the current buffer, while ... ...
135964
Charles Campbell
Charles.E.Campbell@...
Feb 4, 2013 4:02 pm
... They are not the same at all. new/vnew creates an empty window split/vsplit splits the current window, showing the same buffer in both Regards, Chip...
135965
Gary Furash
furashgary@...
Feb 4, 2013 4:03 pm
I'd like to do the following in my VIMRC set list lcs=tab:\|\ where the last character of above is an escaped space "\ ". However, I also trip trailing spaces...
135966
Charles Campbell
Charles.E.Campbell@...
Feb 4, 2013 4:03 pm
... These commands are definitely not the same. new/vnew : split the window, but edit a new (empty) buffer split/vsplit : split the window, but edit the same...
135967
Ben Fritz
fritzophrenic@...
Feb 4, 2013 4:05 pm
... I *think* the only difference is when you don't specify a file name, :new and :vnew give you an empty buffer, but :split and :vsplit use the current...
135968
Ben Fritz
fritzophrenic@...
Feb 4, 2013 4:08 pm
... let &lcs='tab:| ' -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For...
135969
Ben Fritz
fritzophrenic@...
Feb 4, 2013 4:09 pm
... You can also set local options this way. For details see :help :let-& -- -- You received this message from the "vim_use" maillist. Do not top-post! Type...
135970
Benji Fisher
benji@...
Feb 4, 2013 4:15 pm
... (where I have added a space after the escaped space). A more robust solution is to use :let as in ... HTH --Benji Fisher -- -- You received this...
135971
Gary Furash
furashgary@...
Feb 4, 2013 10:49 pm
Thank you to both of you. It's not intuitively obvious that the set statements are actually variable settings, which simplifies this problem. -- -- You...
135972
Benjamin Isbarn
babene88@...
Feb 5, 2013 8:29 am
... Removing 'set cursorcolumn39; from my .vimrc solved this issue. Guess I have to watch the changelogs for some updates on this bug. Anyway thank you for the ...
135973
Christian Brabandt
cblists@...
Feb 5, 2013 8:47 am
... Can someone show me how to reproduce this issue? I have seen this issue in the todo list, but so far, whenever I tried it, I couldn't reproduce it. I am...
135974
Ben Fritz
fritzophrenic@...
Feb 5, 2013 11:53 am
... I just tried reproducing using various minimal configurations based off the default Windows installed Vim and foldmethod=syntax on a C file but failed. ...
135975
Aggelos Kolaitis
neoaggelos@...
Feb 5, 2013 1:00 pm
I'm using vim 7.3 under linux using the console window (gnome-terminal). Is it possible to these things?? 1). Open the help window in the current window. ...
135976
Marco
netuse@...
Feb 5, 2013 1:22 pm
... Marco...
135977
Benjamin Isbarn
babene88@...
Feb 5, 2013 1:44 pm
... Guess you could use my .vimrc which was attached to the initial post, but i'll attach it to this message as well. It's a really minimal config, so i hope ...
135978
Juanmi
bodypheo@...
Feb 5, 2013 2:36 pm
Hey I have this mapping for easy navigation on windows map <C-h> <C-w>h map <C-j>...
135979
Juanmi
bodypheo@...
Feb 5, 2013 2:38 pm
... BTW you can check vimrc here: https://github.com/bodypheo/vim-config/blob/master/vimrc -- -- You received this message from the "vim_use" maillist. Do not...
135980
Charles Campbell
Charles.E.Campbell@...
Feb 5, 2013 3:04 pm
... 1) Manpageview will do this (use :RMan) (and it supports help for perl, linux man pages, python, latex, info, as well as vim) ...
135981
Marcin Szamotulski
mszamot@...
Feb 5, 2013 3:09 pm
... We should also mention CTRL-W_CTRL-O, and even better the ZoomWin plugin (of Charles Campbell, too) ...
135982
vim@...
Feb 5, 2013 3:31 pm
... A couple things occur to me. First, all four work for me if I use "nnoremap" rather than "map". So, while I don't see a mapping in there for either...
135983
vim@...
Feb 5, 2013 3:42 pm
... This isn't quite the same behavior if there are other windows open (window A, and window B, with focus on window A; it will close window B too). However,...