Search the web
Sign In
New User? Sign Up
vim · Vim (Vi IMproved) text editor users list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 70976 - 71005 of 109101   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
70976
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
Jul 2, 2006
7:25 pm
70984
... gv restores last visual selection Yakov...
Yakov Lerner
iler.ml@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
Jul 3, 2006
2:19 am
70988
Hi, Thanks for the suggestions! I have working maps :) -- Mun...
Mun Johl
mun_johl@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
Jul 3, 2006
12:36 pm
70999
You can also ctrl-v, which will prevent the , map. ... -- ....
Vigil
vim5632@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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() ...
Yakov Lerner
iler.ml@...
Send Email
Jul 3, 2006
3:53 pm
Messages 70976 - 71005 of 109101   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help