... Use :mksession, just like Ben said. Jan -- OpenPGP Key-ID: 00A0FD5F "The surest way to corrupt a youth is to instruct him to hold in higher esteem those...
112316
Teemu Likonen
tlikonen@...
Feb 28, 2010 9:51 am
... In regexp replace strings you can use "&" to refer back to the whole match or \1 to \9 to refer to submatches. ... Try this: %s/[0-9]/&_/g -- You received...
112317
rameo
raiwil@...
Feb 28, 2010 9:54 am
Lets say I want to search all number [0-9] with regex and what to put a "_" sign after every number. Normally I can capture the group using $1 but this doesn't...
112318
Michael Ludwig
milu71@...
Feb 28, 2010 2:13 pm
For indenting at the beginning of the line, I want tabs. But in mid-line, I want them to be expanded to spaces. Can this be achieved in Vim? ...
112319
Daniel Fetchinson
fetchinson@...
Feb 28, 2010 5:18 pm
Hi vimmers! There are a couple of vim-like file managers out there, most notably vifm, but also there are plugins for vim itself, like VimExplorer. I'm ...
112320
Benjamin R. Haskell
vim@...
Feb 28, 2010 5:30 pm
... Generally, to compile software on RPM-based distributions, you need to install '-dev' or '-devel39; packages for things that are normally installed as...
112321
Benjamin R. Haskell
vim@...
Feb 28, 2010 5:32 pm
... As pointed out in :h <Leader>, the 'let mapleader' must be done before the mapping is defined. If 'a.vim39; is in your .vim/plugin/ directory, it might be...
112322
rameo
raiwil@...
Feb 28, 2010 6:22 pm
Is it possible to color the directories in Winmanager as in NERDTree? (p.e. all directories blue?) I can't find out as well how to sort the files and...
112323
Benjamin R. Haskell
vim@...
Feb 28, 2010 6:26 pm
... Ah, sorry. I haven't used either RPM- or deb-based distros for a very long time, much preferring Gentoo. Googling 'fedora apt-get build-dep' suggests the...
112324
Matt Wozniski
mjw@...
Feb 28, 2010 6:28 pm
... Unfortunately, that only works on deb-based systems, not RPM ones. I'd hope that RPM based systems have something similar, but I don't know about it; all...
112325
Tom Link
micathom@...
Feb 28, 2010 6:58 pm
Hi, I vaguely remember that such a thing exists but it could well be that I'm confusing vimscript with some other language. It there such a thing as a missing...
112326
sidgalt@...
Feb 28, 2010 7:09 pm
Hey, I just installed a vim c/c++ plugin from here http://www.vim.org/scripts/script.php?script_id=213. Now I'm unable to map <C-j> to any command (I usually...
112327
Tim Chase
vim@...
Feb 28, 2010 7:32 pm
... [snip pseudo-code] ... While I'm not sure I followed your pseudo-code (not being a ruby programmer), I suspect you're reaching for the get() function which...
112328
Tom Link
micathom@...
Feb 28, 2010 7:57 pm
Hi, ... Thanks. But with the get() function the caller would have to know how the values are computed and the computed value isn't added to the dictionary....
112329
Tim Johnson
tim@...
Feb 28, 2010 8:08 pm
... <...> ... And the conclusion is: Works like a charm! thanks again -- Tim tim@... http://www.akwebsoft.com -- You received this message from...
112330
rameo
raiwil@...
Feb 28, 2010 8:32 pm
Yes! That works fine. thank you Teemu. -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
112331
Suresh Govindachar
sgovindachar@...
Feb 28, 2010 9:34 pm
Just to end the thread on installing vim on certain unix systems (based on replies from Benjamin R. Haskell and Matt Wozniski): 1) Build of sources might not...
112332
Miklos Somogyi
msom@...
Feb 28, 2010 9:48 pm
... Hello Keyan, Thanks, I just downloaded it. It still needs some TLC to set-up because it was installed deep under ~/Downloads and gave me an error message: ...
112333
Keyan
key.vim@...
Feb 28, 2010 9:58 pm
... Hi, glad to hear that i could help. there is a vim_mac mailing list that i recommend. bjoern, the main developer, is very fast in answering questions. ...
112334
Jean Johner
jean.johner@...
Feb 28, 2010 10:08 pm
Hello Mat, I have copied your code in the _vimrc of my local PC. It works perfectly. I have copied it in the _vimrc of my office PC on which I work from home...
112335
Tim Chase
vim@...
Feb 28, 2010 10:55 pm
Did my reply not come through on the 26th? In short, the pipe can be used to string together *ex* commands, not normal-mode commands. Even then only certain...
112336
John Beckett
johnb.beckett@...
Mar 1, 2010 12:27 am
... The answers to your previous post are here: http://groups.google.com/group/vim_use/browse_thread/thread/3ff28355fd3416fa John -- You received this message...
112337
John Beckett
johnb.beckett@...
Mar 1, 2010 12:40 am
... The first has general principles; the second is on your point: http://vim.wikia.com/wiki/Indenting_source_code ...
112338
winterTTr
winterTTr.vim@...
Mar 1, 2010 1:31 am
... Anyone can give some idea ? :-) ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
112339
Michael Ludwig
milu71@...
Mar 1, 2010 2:51 am
... Thanks! I had read the first but not the second. Excellent documentation! Smart Tabs (ctab.vim) 1.4.1 does exactly what I want. The newer version 2.1,...
112340
pansz
panshizhu@...
Mar 1, 2010 3:52 am
... This is true for all mainstream Linux distributions: you may need 50G disk spaces to install all developer packages or some 100G to install "everything". ...
112341
Miklos Somogyi
msom@...
Mar 1, 2010 7:28 am
... Thank you Florian, As I am not a big Nix-er, I'll need a very calm day alone to go through with this installation. I'm sure I'll need to find and download...
112342
Wincent Colaiuta
win@...
Mar 1, 2010 7:42 am
I'm writing a plug-in and want to temporarily hide the cursor. It would be really neat if I could do "highlight Cursor NONE" and later restore the highlight...
112343
Fritz Mehner
mehner@...
Mar 1, 2010 7:47 am
... With the following two lines in my ~/.vimrc the mapping for 'C-j' works for me: let g:C_Ctrl_j = 'off' nmap <silent> <C-j> 4j -- You received this...
112344
Tony Mechelynck
antoine.mechelynck@...
Mar 1, 2010 7:55 am
... Note that if you set 'winheight39; to a high value in your vimrc in order to make window sizes change dynamically (and the current window always be the...