Re: Search Vam Packages

2012-12-08 Thread Marc Weber
Excerpts from Sayth Renshaw's message of Sat Dec 08 00:37:56 +0100 2012: Is there a simple way to search VAM repositories to know what is available and what exact format we should write our plugins in. grep docs for this line: I want feature X such as browsable lists of plugins. ActivateAddons

Re: Slow vim (gvim) 7.3 on first startup

2012-12-08 Thread Marc Weber
options: - compare with xclock or such to make sure its not X related - try any of the followming options gvim vim DISPLAY= gvim - script relatedc? don't source custom .vimrc files: (g)vim -u NONE -U NONE -N - try vim then type :gui to start Problem: After invoking gvim for

snipmate vs UltiSnips?

2012-12-08 Thread Marc Weber
Luckily the question is partially gone, because I've done some work on making UltiSnips read snipmate files close to the way UltiSnips did. You can find all details here, 3) ultisnip https://github.com/honza/snipmate-snippets This is a preview and unfinished, but does already work for me. The

behaviour of d_

2012-12-08 Thread esquifit
Hi, Given a file with the following lines (cursor position at '|') First line Second line beginning |with whitespace Third line the following commands produce the indicated results: 1) _ goes to first non-blank character in the same line ('S') 2) v_ visually select region between 'S' and

Re: Full screen writing, a la Omm Writer in vim

2012-12-08 Thread Christian Brabandt
Hi robslav! On Fr, 07 Dez 2012, robslav wrote: I really dig the full screen writing and sound features of Omm Writer, and I was wondering if there was any way to customize vim to do a similar thing. Would this be possible with a vimscript? I don't know much about scripting vim, but I would

Re: behaviour of d_

2012-12-08 Thread Christian Brabandt
Hi esquifit! On Sa, 08 Dez 2012, esquifit wrote: Hi, Given a file with the following lines (cursor position at '|') First line Second line beginning |with whitespace Third line the following commands produce the indicated results: 1) _ goes to first non-blank character in the

Re: behaviour of d_

2012-12-08 Thread esquifit
On Saturday, December 8, 2012 1:17:32 PM UTC+1, esquifit wrote: First line Second line beginning |with whitespace Third line the following commands produce the indicated results: 1) _ goes to first non-blank character in the same line ('S') 2) v_ visually select region between 'S' and

Re: behaviour of d_

2012-12-08 Thread Christian Brabandt
Hi On Sa, 08 Dez 2012, Christian Brabandt wrote: Given a file with the following lines (cursor position at '|') First line Second line beginning |with whitespace Third line the following commands produce the indicated results: 1) _ goes to first non-blank character in the

Re: behaviour of d_

2012-12-08 Thread Bram Moolenaar
Christian Brabandt wrote: On Sa, 08 Dez 2012, Christian Brabandt wrote: Given a file with the following lines (cursor position at '|') First line Second line beginning |with whitespace Third line the following commands produce the indicated results: 1) _ goes to

Re: calling a function on bufenter,bufnew,bufread

2012-12-08 Thread Ben Fritz
On Friday, December 7, 2012 2:34:02 PM UTC-6, Chris Lott wrote: On Fri, Dec 7, 2012 at 10:43 AM, Ben Fritz fritzophre...@gmail.com wrote: au BufNewFile,BufEnter,BufRead vimperator.txt call WW() In the future, or if this doesn't solve your problem, it isn't working is not

Re: vimdiff: how to calculate delta for digits in different lines?

2012-12-08 Thread ping
On 12/8/2012 2:01 AM, Roy Fulbright wrote: The easiest way I found to calculate and display the delta of lines that differ is to write a short Perl program: #!/usr/bin/perl use strict; use warnings; my $file1 = diff1.txt; my $file2 = diff2.txt; open(my $fh1,'', $file1) or die Error opening

matchpairs and Unicode

2012-12-08 Thread KamilS
The help for 'matchpairs' says “Currently only single byte character pairs are allowed”. Is there any way to work around this? Or any hope that support for Unicode will be added in the foreseeable future? I’d very much like to have matching for different kinds of quotes, especially ‘’. I tried

Re: behaviour of d_

2012-12-08 Thread esquifit
On Saturday, December 8, 2012 1:37:52 PM UTC+1, Christian Brabandt wrote: _ is a linewise motion, so you are deleting the complete line. You should however be able to use the o_v operator to force the motion to be characterwise, however, for some reason, this does not seem to work with d

Re: matchpairs and Unicode

2012-12-08 Thread Tony Mechelynck
On 08/12/12 16:48, KamilS wrote: The help for 'matchpairs' says “Currently only single byte character pairs are allowed”. Is there any way to work around this? Or any hope that support for Unicode will be added in the foreseeable future? I’d very much like to have matching for different kinds