... Posting the solution I came up with in case it may be of interest to other vim users. file: ~/.vim/nerdtree_plugin/my_plugin.vim call NERDTreeAddKeyMap({ \...
Matteo Riva
muradin@...
Nov 8, 2009 12:34 pm
109059
... I tried to explain my approach a little bit here: http://deplate.sourceforge.net/TutorialVikiBibtex.html ...
Tom Link
micathom@...
Nov 8, 2009 12:51 pm
109060
If I have these lines in a script: let filename = something new filename new takes the literal string 'filename' instead of expanding it and using its value....
Matteo Riva
muradin@...
Nov 8, 2009 12:53 pm
109061
Hi Matteo! ... It's because :new is an ex command and expects a filename and not an expression. Therefore you have to use exe to evaluate an expression. ... ...
Christian Brabandt
cblists@...
Nov 8, 2009 12:57 pm
109062
... -tim --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
Tim Chase
vim@...
Nov 8, 2009 1:06 pm
109063
Hi, I am currently trying to reformat a xml-like text to a <tab> separated text, which I can import into gnumeric as a cvs-file. The original text (after some...
meino.cramer@...
Nov 8, 2009 1:13 pm
109064
Hi meino.cramer! ... This works for me on your sample text, you have given above. You can also try to use a non-greedy expression: s/^.\{-\}>//g Which should...
Christian Brabandt
cblists@...
Nov 8, 2009 1:21 pm
109065
... Hi Kurt, you can do that using the surround plugin, and entering dst over the line to Delete the Surrounding html Tag. ...
Francisco Dibar
frandibar@...
Nov 8, 2009 1:46 pm
109066
Hi christian.brabandt ...thanks for the inspirations...now it works Regards, mcc ... -- Please don't send me any Word- or Powerpoint-Attachments unless it's...
meino.cramer@...
Nov 8, 2009 2:05 pm
109067
Hi, is it possible to make a visual selection permament that way, that only a specific command will un-visual the block? Currently the visual block is...
meino.cramer@...
Nov 8, 2009 3:12 pm
109068
... Hi, use gv to restore the last visual selection. -- Benoit Mortgat 39, cours Albert Thomas 69003 Lyon, France +33 4 27 78 31 27 / +33 6 17 15 41 58 ...
Benoit Mortgat
mortgat@...
Nov 8, 2009 3:20 pm
109069
... Hi, ...so as a logical consequence: there is no way to make it permanent??? -- Please don't send me any Word- or Powerpoint-Attachments unless it's...
meino.cramer@...
Nov 8, 2009 3:26 pm
109070
... Tim Thanks a lot. That worked great. Quick question. Is this correct: @ can be used instead of / a the separater between the searched-for text and the...
kurt krueckeberg
kurtk@...
Nov 8, 2009 3:29 pm
109071
... Forgive my ignorance, but where would one download the 'dst' plugin? thanks, Kurt --~--~---------~--~----~------------~-------~--~----~ You received this...
kurt krueckeberg
kurtk@...
Nov 8, 2009 3:45 pm
109072
... Very likely so. Making a permanent colouring makes it enter a realm more likely covered by the following plugin (albeit not what you were looking for): ...
HÃ¥kan
lindqvist.home@...
Nov 8, 2009 4:25 pm
109073
... Yes, vim allows a pretty broad range of characters to be used as the separator as detailed at ... (not a very intuitive help-target, but it's the most...
Tim Chase
vim@...
Nov 8, 2009 5:11 pm
109074
... This is probably because the vim web site says to sign up and post to @vim.org, but points to the google group for help, where you are told to post to...
Paul
vim5632@...
Nov 8, 2009 6:10 pm
109075
... Apparently the default colour scheme does not set g:colors_name, so that gives an undefined variable error :/ -- . ...
Paul
vim5632@...
Nov 8, 2009 6:12 pm
109076
... If a file contains only characters in the range [0x00-0x7F], its representation is identical in US-ASCII, Latin1 or UTF-8. Therefore it doesn't matter in...
Tony Mechelynck
antoine.mechelynck@...
Nov 8, 2009 7:39 pm
109077
... Hello, it's called surround.vim and you may find it at vim.org Have a nice day -- Benoit Mortgat 39, cours Albert Thomas 69003 Lyon, France +33 4 27 78 31...
Benoit Mortgat
mortgat@...
Nov 8, 2009 9:27 pm
109078
I installed the NERDTree plugin, but :help NERD_tree.txt causes vim to tell me there is no help for NERD_tree.txt. The plugin itself works, as typing :NERDTree...
KOG
damienradtke@...
Nov 8, 2009 11:56 pm
109079
G'day everyone, I've been a hard-core vim user for over a decade and I've never found an answer for this. It's about time I post it to a forum. :-) I want a...
Michael Scheper
vim@...
Nov 8, 2009 11:56 pm
109080
This is the second and last post in a series of things I've always wondered about vim. :-) Again, I've searched for the answer several times over the years,...
Michael Scheper
vim@...
Nov 8, 2009 11:57 pm
109081
... Update your help tags with :helptags ~/.vim/doc and try again. Kent --~--~---------~--~----~------------~-------~--~----~ You received this message from...
Kent Sibilev
ksruby@...
12:24 am
109082
... one thing that can help with wrapped lines is the 'showbreak' option i used to have set showbreak="> " in my .vimrc but at some point vim started reading...
sc
toothpik@...
12:36 am
109083
... We have a very nice tip for this: http://vim.wikia.com/wiki/Highlight_multiple_words John --~--~---------~--~----~------------~-------~--~----~ You...
John Beckett
johnb.beckett@...
12:44 am
109084
... http://vim.wikia.com/wiki/Replace_a_word_with_yanked_text I am part-way through fixing the above tip to show how copy/paste is supposed to work in Vim, so...
John Beckett
johnb.beckett@...
12:49 am
109085
... i find it odd that help says "> " is a useful value for this option, when if you specify it, you get null hmmm -- should i be starting a new thread here? ...
sc
toothpik@...
12:53 am
109086
... Oh, trust me...it's not likely your last -- I've been using vim for about 10yrs (since the 5.x days), and answering lots of questions here (I think I'm in...
Tim Chase
vim@...
1:06 am
109087
... oops, got it. I setup my sudo to always preserve my personal environment for all commands, so I do never need the sudo -e. ...