Re: paste works once, register then garbled

2012-08-20 Thread eNG1Ne
Thanks! seems to be simply the re-use of registers question; I hadn't realised that 'paste to a' and 'record keystrokes to a' would use the same a. (not as dumb as it might sound g I spend most of my working day in an environment where, for example, apply character style and apply paragraph

Re: Listing/finder plugins like command-t, ctrlp, fuzzyfinder

2012-08-20 Thread lith
What I want is to get a list of plugins which makes sense to support in my aurum plugin for OpenAny mappings: mappings that bring you a prompt listing files present in given revision that can be then opened. Three of them mentioned in the title are already supported. tlib

How to use C-U in manual completion?

2012-08-20 Thread Yichao Zhou
It seems that map of Ctrl-U does not work in manual completion. I want let it work as delete to the beginning even in completion mode. How should I do? -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying to. For more

Re: Vim perl highlighting doesn't understand UTF-8?

2012-08-20 Thread Linda W
Linda W wrote: 920 sub ƒshow_progress($) { 921 #my $p = shift if ref $_[0]; 922 my $paths = $_[0]; But the 'ƒ' in ƒshow_progress ends up being highlighted in red [ as meaning incorrect syntax]. Is there a way to tell the vim syntax checker to allow UTF-8. Does the lack of response

defining imap that calls performs second call if cursor didn't move

2012-08-20 Thread skeept
Hi, Suppose I have two functions Func1 and Func2. I would like to know if it is possible to define a imap that first calls Func1 (imap f1 c-r:call Func1()CR) if the cursor moves as a result of this call then we are done, otherwise it would call Func2 after calling Func1. Thank you. -- You

Re: Vim perl highlighting doesn't understand UTF-8?

2012-08-20 Thread Benjamin R. Haskell
On Mon, 20 Aug 2012, Linda W wrote: Linda W wrote: 920 sub ƒshow_progress($) { 921 #my $p = shift if ref $_[0]; 922 my $paths = $_[0]; But the 'ƒ' in ƒshow_progress ends up being highlighted in red [ as meaning incorrect syntax]. Is there a way to tell the vim syntax checker to allow

Help me understand @. macros

2012-08-20 Thread cybrown
I'm a relatively new VIM user, and I've been playing vimgolf (www.vimgolf.com) to learn new skills. This challenge has a bizarre solution that I don't understand: http://www.vimgolf.com/challenges/4d1db1b8de2f897c2a00014a Here's the shortest solution posted: a.BSCREsc24@.ZZ First off, I didn't

Re: Help me understand @. macros

2012-08-20 Thread Bee
On Aug 20, 1:58 pm, cybrown cybr...@gmail.com wrote: I'm a relatively new VIM user, and I've been playing vimgolf (www.vimgolf.com) to learn new skills. This challenge has a bizarre solution that I don't understand:http://www.vimgolf.com/challenges/4d1db1b8de2f897c2a00014a Here's the

Re: Help me understand @. macros

2012-08-20 Thread Bee
Oops, sent before I was done. a.BSCREsc24@.ZZ a enter insert mode after the a . enter the . character, a setup for what follows BSdelete the . char CRenter a carrage return, start a new line Esc exit insert mode 24 the count @. execute the dot register, ie .bscr

Re: defining imap that calls performs second call if cursor didn't move

2012-08-20 Thread skeept
On Monday, August 20, 2012 6:23:53 PM UTC-4, Simon Ruderich wrote: On Mon, Aug 20, 2012 at 01:42:04PM -0700, skeept wrote: Hi, Suppose I have two functions Func1 and Func2. I would like to know if it is possible to define a imap that first calls Func1 (imap f1 c-r:call