... ohhh...this looks a more generic solution... it works perfectly in all cases! thanks! -- -- You received this message from the "vim_use" maillist. Do not...
136028
Vlad Irnov
vlad.irnov@...
Feb 8, 2013 1:11 am
... Hi Ping, Please use the github page or email me directly for any VOoM-specific requests. Scripting of VOoM should not be attempted without my supervision!...
136029
ping
songpingemail@...
Feb 8, 2013 4:57 am
... thanks Vlad, that's definitely more neat way. but what if I want to archive the same effect regardless of which window my cursor is currently is, body or...
136030
rudrab
rudra.banerjee@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
Feb 8, 2013 4:54 pm
... Hi ping, I googled the subject of your message and found this : ...
136038
Roy Fulbright
rfulbrig@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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...