Hello, Vim7 required. VST is script which makes possible to export text files with simple markup to HTML, LaTeX or HTML S5 presentation format to create even ...
Mikolaj Machowski
mikmach@...
Jul 1, 2006 10:04 am
70977
... The function, InsertIfNotAfter, is defined as function! InsertIfNotAfter(key, what, pattern) let c = col('.') - 1 let l = getline('.') let l = strpart(l,...
Dr Bean
lang@...
Jul 1, 2006 11:52 pm
70978
Now it works fine. Here is the script with two examples: Try entering HelloYou in a buffer and do H<m-x><m-i> or ,HY<m-x><m-i> which should require exactly two...
Marc Weber
marco-oweber@...
Jul 2, 2006 12:17 am
70979
Is it possible to doubleclick a highlighted URL in a text and thus launch a browser, f.e. internet explorer or firefox? The command "gf" allows to open a file...
Cesar Romani
andalou@...
Jul 2, 2006 2:19 am
70980
Check out the utl plugin: * http://www.vim.org/scripts/script.php?script_id=293 It may not be exactly what you want, but it's very close. HTH! Tom Purl...
Tom Purl
tom@...
Jul 2, 2006 2:31 am
70981
Hi, I'm trying to compile the latest and greatest version of Vim using AAP (since that seems to be the preferred way of doing it), and am getting an odd error....
Tom Purl
tom@...
Jul 2, 2006 2:58 am
70982
Hi, normally functions or even ruby scripts run in ex mode, but sometimes it necessary to execute them in visual mode (e.g. using v_s to replace the selected...
Matthias-Christian Ott
matthias.christian@...
Jul 2, 2006 6:38 pm
70983
... On the command line <C-R>" insert the contents of the unnamed yank buffer....
thomas scott urban
tsurban@...
Jul 2, 2006 7:25 pm
70984
... gv restores last visual selection Yakov...
Yakov Lerner
iler.ml@...
Jul 2, 2006 7:44 pm
70985
A bit off-topic, but in addition to yank and paste (e.g. <c-r>") you can use <c-r><c-w> to insert the word under the cursor. -- Stefan...
Stefan Karlsson
stefan.74@...
Jul 2, 2006 7:45 pm
70986
... to make myself clearer: try gv not *after* Esc v but *instead of* Esc v. Yakov...
Yakov Lerner
iler.ml@...
Jul 2, 2006 8:08 pm
70987
... Right, and that is what I intended by saying the Funcref's are behaving as the original functions. Since numbered functions are accessible globally, their...
Hari Krishna Dara
hari_vim@...
Jul 3, 2006 2:19 am
70988
Hi, Thanks for the suggestions! I have working maps :) -- Mun...
Mun Johl
mun_johl@...
Jul 3, 2006 2:51 am
70989
... Hi, yes, it's set to MyDiff(), which is defined in _vimrc as set diffexpr=MyDiff() function MyDiff() let opt = '-a --binary ' if &diffopt =~ 'icase' | let...
Wolfgang Schmidt
hak@...
Jul 3, 2006 8:41 am
70990
Thanks for all the explanations everyone. I do see your points, and will try to add 's' to my weaponry :) Wim...
Wim R. Crols
wim@...
Jul 3, 2006 8:44 am
70991
Hello I was wondering if it is possible to have a motion command that would be aware of the Cammel Notation (eg BufferedInputStreamReader) so that the cursor...
Giorgos Gaganis
G.Gaganis@...
Jul 3, 2006 9:25 am
70992
Hi, you could use the following mappings (put them into your _vimrc): "Launch firefox with URL under cursor nmap ,ff :update<CR>:!start "C:\Programme\Mozilla...
Wolfgang Schmidt
hak@...
Jul 3, 2006 9:39 am
70993
... What about map c /\u<cr> ? This will go to the next upper case character. ? searches backwards See ... Remember that you can use fC to jump the the next...
Marc Weber
marco-oweber@...
Jul 3, 2006 10:42 am
70994
... [cut] ... I think the OP wants an (in vim nomenclature) "operator pending mode mapping", so that it can be used *with* the "c" command, rather than...
Tim Chase
vim@...
Jul 3, 2006 11:02 am
70995
Hi, after re-examination of the problem I found the diff functionaliy now working on Win2k, still don't know what caused the problem. Anyway, diff'ing does...
Wolfgang Schmidt
hak@...
Jul 3, 2006 11:13 am
70996
Because savevers (script #89) no longer works properly with vim 7, you can see what I'm trying to do here: autocmd BufWritePre,FileWritePre * saveas...
Vigil
vim5632@...
Jul 3, 2006 12:25 pm
70997
... savevers perfectly works for me in vim7, just as it did for vim6 Yakov...
Yakov Lerner
iler.ml@...
Jul 3, 2006 12:32 pm
70998
... I'm still not getting it, I think. Do you have a case where the numbered function scheme will break down, or is it about the callbacks, described below? ...
Eric Arnold
eric.p.arnold@...
Jul 3, 2006 12:36 pm
70999
You can also ctrl-v, which will prevent the , map. ... -- ....
Vigil
vim5632@...
Jul 3, 2006 12:55 pm
71000
... Here are my savevers settings: " {{{ configuration for savevers.vim " http://www.vim.org/scripts/script.php?script_id=89 -- savevers.vim plugin by Ed...
Yakov Lerner
iler.ml@...
Jul 3, 2006 1:18 pm
71001
... Weird. Tell me, do your settings differ greatly from mine?: " savevers set backup set patchmode=.prev let savevers_dirs="~/backups/vim" exe "set...
Vigil
vim5632@...
Jul 3, 2006 1:20 pm
71002
... Thank you very much for your answers. What Tim suggested is doing the job with the following modification ... the above works like 'cw' but also stops on...
Giorgos Gaganis
G.Gaganis@...
Jul 3, 2006 1:20 pm
71003
... Weird. I guess when I pulled my latest copy (we both are using 0.8), it was corrupt or something, because yours works. Thanks. -- ....
Vigil
vim5632@...
Jul 3, 2006 2:30 pm
71004
... I agree, Hari. I'd expect funcref function('s:T') to be callable outside of the script, too. Yakov...
Yakov Lerner
iler.ml@...
Jul 3, 2006 3:42 pm
71005
... To make myself more clear. I expect g:Xxx() to be callable from global scope of from another script in this example: " --- scritp x.vim function! s:XXX() ...