Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 136030 - 136059 of 137814   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
136030 rudrab
rudra.banerjee@... Send Email
Feb 8, 2013
12:27 pm
I am trying to put insrt_frame at the current cursor position when F12 is pressed what should i do? map <F12>: call insrt_frame() fun! insrt_frame() ... endf ...
136031 Marcin Szamotulski
mszamot@... Send Email
Feb 8, 2013
2:32 pm
... In VimL user functions must start with an uppercase letter, unless it is a function from autoload directory. So after renaming the function to Insr_frame...
136032 Rudra Banerjee
rudra.banerjee@... Send Email
Feb 8, 2013
3:12 pm
Thanks for your reply. I use vim-Latex suite ... -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text...
136033 Rudra Banerjee
rudra.banerjee@... Send Email
Feb 8, 2013
3:29 pm
So, now it looks like map <F12> :execute Insrt_frame() function! Insrt_frame() ... endfunction and still not working. ... -- -- You received this message from...
136034 Ben Fritz
fritzophrenic@... Send Email
Feb 8, 2013
3:50 pm
... I tried but was unable to create a minimal configuration based on these setting that would reproduce the issue. I'll look into it some more this weekend at...
136035 rudrab
rudra.banerjee@... Send Email
Feb 8, 2013
4:03 pm
Ah...I managed to fix it almost with nmap in place of map. But one problem is still there: it inserts the lines at the top of the file. How can I make it...
136036 ping
songpingemail@... Send Email
Feb 8, 2013
4:45 pm
... positions/marks of the 2 lines that the new texts are going to be inserted into, say mark x/y ... select the newly-pasted texts ('xjV'yk)... ... behavior...
136037 Nicolas Dermine
nicolas.dermine@... Send Email
Feb 8, 2013
4:54 pm
... Hi ping, I googled the subject of your message and found this : ...
136038 Roy Fulbright
rfulbrig@... Send Email
Feb 8, 2013
6:19 pm
I am using gvim 7.3 on Windows 7. I need to select the four x's in the following sample text. I positioned the cursor on the upper left 'x', then typed 'v' to...
136039 David Fishburn
dfishburn.vim@... Send Email
Feb 8, 2013
6:39 pm
... Do you want xx02ijxx yanked or do you want only xxxx? Try this: Do want you are currently doing, then hit y to yank. ... To see what you just yanked. You...
136040 Marcin Szamotulski
mszamot@... Send Email
Feb 8, 2013
6:51 pm
... Functions should be called not executed: map <f12> :call Insrt_fram() the :execute is to execute a string as an Ex command, for example to do ... You can...
136041 Dan Wierenga
dwierenga@... Send Email
Feb 8, 2013
6:57 pm
... When I use the arrows keys on Windows 7, I lose the selection. However, hjkl works just fine. I've never really bothered to figure out why, I just use...
136042 Chris Collision
cfcollision@... Send Email
Feb 8, 2013
7:01 pm
... You want CTRL-v, I think. -- -Collision http://twitter.com/cfCollision | http://clearthecrease.blogspot.com/ | http://noheadlineaudiozine.com/ -- -- You...
136043 Josef Montag
josef.montag@... Send Email
Feb 8, 2013
8:22 pm
... Thanks a lot to you all guys. This got me started. Enjoy your weekends. J. -- -- You received this message from the "vim_use" maillist. Do not top-post!...
136044 Roy Fulbright
rfulbrig@... Send Email
Feb 8, 2013
11:24 pm
Date: Fri, 8 Feb 2013 13:39:25 -0500 Subject: Re: Visual Mode Selection in Windows 7 From: dfishburn.vim@... To: vim_use@googlegroups.com On Fri, Feb 8,...
136045 Roy Fulbright
rfulbrig@... Send Email
Feb 8, 2013
11:25 pm
Date: Fri, 8 Feb 2013 11:01:19 -0800 Subject: Re: Visual Mode Selection in Windows 7 From: cfcollision@... To: vim_use@googlegroups.com On Fri, Feb 8,...
136046 Chris Lott
chris@... Send Email
Feb 8, 2013
11:53 pm
re: Selecting pasted text. If you do a search for "re-selecting block in different buffer" you will see some more advice on this topic. c -- Chris Lott...
136047 John Beckett
johnb.beckett@... Send Email
Feb 9, 2013
12:41 am
... Here is the complete code. In normal mode, press F12 to insert the three lines after the current line. nnoremap <F12> :call Insert_frame()<CR> function!...
136048 John Beckett
johnb.beckett@... Send Email
Feb 9, 2013
12:41 am
... Please delete excessive text when replying. Don't quote a chain of previous messages, and make sure to delete email addresses. David Fishburn mentioned the...
136049 David Barnett
daviebdawg@... Send Email
Feb 9, 2013
3:03 am
... Nope, I already made the necessary autocmd (as I mentioned above), but it turns out it's a limitation of vim and it would be impossible for me to have...
136050 Benjamin Fritz
fritzophrenic@... Send Email
Feb 9, 2013
3:35 am
The attached vimrc.vim file (when used as the .vimrc, with no non-standard plugins), can reproduce the issue on the attached test.c file with the attached tags...
136051 Benjamin Fritz
fritzophrenic@... Send Email
Feb 9, 2013
3:39 am
... gmail is being a huge pain. tags file attached...again. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below...
136052 Ben Fritz
fritzophrenic@... Send Email
Feb 9, 2013
3:39 am
... OK this is getting ridiculous. It's attached to the email. Generate your own tags or copy-paste the following into a new file: !_TAG_FILE_FORMAT 2...
136053 Bee
forth@... Send Email
Feb 9, 2013
3:47 am
There is a version of vim for the ios (iphone, ipad). It has a .vim directory, I can move files into it, but can not create new directories. Is it possible to...
136054 Marcin Szamotulski
mszamot@... Send Email
Feb 9, 2013
7:17 am
... If you have there a .vimrc file then you could write autocommands to do that. This way you can emulate ftplugin directory. Vim also has the autoload...
136055 Christian Brabandt
cblists@... Send Email
Feb 9, 2013
1:47 pm
Hi David! ... I don't really understand your problem, but hey, you can always propose a patch to change Vims behaviour. Mit freundlichen Grüßen Christian -- ...
136056 Niels Kobschätzki
niels@... Send Email
Feb 9, 2013
2:12 pm
... hm…ok…so it is doable but it sounds kind of complex… Thanks, Niels -- -- You received this message from the "vim_use" maillist. Do not top-post! Type...
136057 Niels Kobschätzki
niels@... Send Email
Feb 9, 2013
2:13 pm
... If I read that correctly that plug-in is actually for enabling links in plain-text to work and not add all like the functionality I was describing. Thanks,...
136058 Eric Weir
eeweir@... Send Email
Feb 9, 2013
6:50 pm
... I'd like to get my vim setup I have on my macbook---the .vim folder with all its subfolders and plugin folders---onto my ipad. I've been led to believe I...
136059 Xavier de Gaye
xdegaye@... Send Email
Feb 9, 2013
7:33 pm
Pyclewn 1.10 has been released at http://pyclewn.sourceforge.net/ Pyclewn is a Python program that allows the use of Vim as a front end to the GNU debugger gdb...
Messages 136030 - 136059 of 137814   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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