Re: Re: Spelling support doesn’t deal with ‘’’ correctly

2011-03-08 Fir de Conversatie Nikolai Weibull
On Wed, Dec 1, 2010 at 22:00, Nikolai Weibull n...@bitwi.se wrote: On Wed, Dec 1, 2010 at 21:12, Bram Moolenaar b...@moolenaar.net wrote: Nikolai Weibull wrote: Writing “Let’s begin …” marks the ‘s’ as a spelling error.  Writing “Let's begin …” works fine.  Is this a bug, or am I missing

[BUG] feedkeys() does not work inside an expr mapping

2011-03-08 Fir de Conversatie ZyX
Consider the following script: % cat expr-feedkeys.vim EOF set nocompatible let g:n=0 function FeedKeys() call feedkeys(i.g:n.\e) let g:n+=1 return endfunction nnoremap expr a FeedKeys() nnoremapb :call FeedKeys()CR EOF % vim -u

Re: [BUG] feedkeys() does not work inside an expr mapping

2011-03-08 Fir de Conversatie Christian Brabandt
On Tue, March 8, 2011 1:23 pm, ZyX wrote: Consider the following script: % cat expr-feedkeys.vim EOF set nocompatible let g:n=0 function FeedKeys() call feedkeys(i.g:n.\e) let g:n+=1 return endfunction nnoremap expr a FeedKeys()

Re: [BUG] feedkeys() does not work inside an expr mapping

2011-03-08 Fir de Conversatie ZyX
Reply to message «Re: [BUG] feedkeys() does not work inside an expr mapping», sent 16:05:51 08 March 2011, Tuesday by Christian Brabandt: I think, expr-mappings don't see the typeahead until after the mapping finished. If you want to use feedkeys() inside an expression mapping, you need to

[BUG] getpos(') returns wrong column number

2011-03-08 Fir de Conversatie ZyX
Consider the following script: vim -u NONE -s (echo $'gg0VG:call writefile(getpos(\'), getpos)\n:qa!') It will end up having [0, 1, 2147483647, 0] as lines in `getpos' file, while expected to have [0, 1, 1, 0]. Tested on vim-7.3.102 (from Gentoo repos) and vim-7.3.138 (mercurial rev

Re: Re: Re: Spelling support doesn’t deal with ‘’’ correctly

2011-03-08 Fir de Conversatie Bram Moolenaar
Nikolai Weibull wrote: On Wed, Dec 1, 2010 at 22:00, Nikolai Weibull n...@bitwi.se wrote: On Wed, Dec 1, 2010 at 21:12, Bram Moolenaar b...@moolenaar.net wrote: Nikolai Weibull wrote: Writing “Let’s begin …†marks the ‘s’ as a spelling error.  Writing “Let's begin

Re: Why does vim link with selinux?

2011-03-08 Fir de Conversatie ron
Forgot to mention, 7.3.138 On Mar 8, 5:07 pm, ron r...@ronware.org wrote: I give the configure option --disable-selinux, and vim still links with it. This is on kubuntu 10.10 ... -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are

Re: Why does vim link with selinux?

2011-03-08 Fir de Conversatie ron
If you're using ldd to test that, then that's the problem.  ldd reports all recursive library dependencies.  objdump -p vim | grep NEEDED will show what the Vim binary directly requires.   Nope; vim --version reports -lselinux -- You received this message from the vim_dev maillist. Do not

Re: [BUG] getpos(') returns wrong column number

2011-03-08 Fir de Conversatie James Vega
On Tue, Mar 8, 2011 at 9:53 AM, ZyX zyx@gmail.com wrote: Consider the following script:    vim -u NONE -s (echo $'gg0VG:call writefile(getpos(\'), getpos)\n:qa!') It will end up having [0, 1, 2147483647, 0] as lines in `getpos' file, while expected to have [0, 1, 1, 0]. That's

Re: Why does vim link with selinux?

2011-03-08 Fir de Conversatie James Vega
On Tue, Mar 8, 2011 at 10:41 AM, ron r...@ronware.org wrote: If you're using ldd to test that, then that's the problem.  ldd reports all recursive library dependencies.  objdump -p vim | grep NEEDED will show what the Vim binary directly requires. Nope; vim --version reports -lselinux Are

Re: Why does vim link with selinux?

2011-03-08 Fir de Conversatie ron
Are you sure you're using the version that you built with --disable-selinux?  That flag works fine for me. As it turns out, the command-line I was giving configure was not exactly right, so the flag was not seen. Sorry for the false-alarm, folks... nothing to see here! -- You received this

Re: Re: Spelling support doesn’t deal with ‘’’ correctly

2011-03-08 Fir de Conversatie Dominique Pellé
Nikolai Weibull n...@bitwi.se wrote: On Wed, Dec 1, 2010 at 22:00, Nikolai Weibull n...@bitwi.se wrote: On Wed, Dec 1, 2010 at 21:12, Bram Moolenaar b...@moolenaar.net wrote: Nikolai Weibull wrote: Writing “Let’s begin …” marks the ‘s’ as a spelling error.  Writing “Let's begin …” works

google summer of code

2011-03-08 Fir de Conversatie Anurag Priyam
Hi, In a discussion with current maintainers of vim.org regarding site re-write/re-thinking the topic of participating in Google Summer of Code was raised, and I feel that further discussion (if happening) should take place on this list. A bit of Googling reveals that Vim did not participate

Re: Re: Spelling support doesn’t deal with ‘’’ correctly

2011-03-08 Fir de Conversatie James Vega
On Tue, Mar 8, 2011 at 3:01 PM, Dominique Pellé dominique.pe...@gmail.com wrote: Nikolai Weibull n...@bitwi.se wrote: On Wed, Dec 1, 2010 at 22:00, Nikolai Weibull n...@bitwi.se wrote: On Wed, Dec 1, 2010 at 21:12, Bram Moolenaar b...@moolenaar.net wrote: Nikolai Weibull wrote: Writing

Re: google summer of code

2011-03-08 Fir de Conversatie ZyX
Reply to message «google summer of code», sent 21:34:07 08 March 2011, Tuesday by Anurag Priyam: * Improving the signs implementation. Different scripts can use same sign id by accident. So this is a design flaw. Also, signs which don't move if you add lines. (Eg for breakpoints when using

Re: google summer of code

2011-03-08 Fir de Conversatie Marc Weber
Excerpts from ZyX's message of Tue Mar 08 21:08:06 + 2011: support to my format.vim plugin, but the following facts stopped me: 1. signs are accessible only with commands; 2. command output (which I may parse) is translated; Why do you want to parse it? Can you give vim-addon-signs a try?

Re: google summer of code

2011-03-08 Fir de Conversatie Charles Campbell
Anurag Priyam wrote: [snip] Some ideas (most of them copied from Marc's email with slight editing) that might serve a GSoC: [snip] I'd like an improvement to the plugin debugging: the ability to watchpoint expression(s). For those who don't know gdb, that means: if the expression

mouse support in omni completion suggestion list

2011-03-08 Fir de Conversatie rameo
Just an idea ... Would it be possible to add mouse support in omni completion suggestion list? -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php

Re: google summer of code

2011-03-08 Fir de Conversatie Thomas Hume
On Tue, Mar 8, 2011 at 22:08, ZyX zyx@gmail.com wrote: Another suggestion for GSoC: make vim able to differentiate between CR and C-m and make it possible to map something like C-Tab at least in GUI (these features are discussed on vim-dev now, see the long «Dear Bram» thread). I would

Re: google summer of code

2011-03-08 Fir de Conversatie Ernie Rael
On 3/8/2011 10:34 AM, Anurag Priyam wrote: Some ideas (most of them copied from Marc's email with slight editing) that might serve a GSoC: Does the faster re still need tests and final integration? -- You received this message from the vim_dev maillist. Do not top-post! Type your reply

Re: google summer of code

2011-03-08 Fir de Conversatie Anurag Priyam
Since, I am not qualified to act on behalf of Vim, I will leave it to the upstream to take if from here :). Just for a start, we would need volunteers for organization admin, mentors for ideas, and maybe more ideas. I have started a wiki page [1] to collect and refactor the ideas. [1]

[gsoc] Call for Admin

2011-03-08 Fir de Conversatie Anurag Priyam
Hi, Its exciting to see people enthusiastic about Vim participating in Google Summer of Code; see [1]. To take things ahead we will need an organization admin to apply here [2]. The role of an organization admin as stated on the summer of code faq [3]: An organization administrator oversees the

[gsoc] Organization Application Template

2011-03-08 Fir de Conversatie Anurag Priyam
Hi, To make it easy I have started another wiki page[1] containing the application template for the organizations. I will try to fill in trivial details after my classes (or maybe in the break). Important details will have to be filled by more experienced members (ideally, admin) then the

[gsoc] call for mentors

2011-03-08 Fir de Conversatie Anurag Priyam
Hi, I believe the last of the first steps for gsoc. We need people to volunteer to mentor, and co-mentor different ideas. I am not sure but mentoring should not take more than ~20 hrs/week of your time (I remember having read that somewhere, and I could be totally wrong :P). Maybe its a good idea

Re: [gsoc] Call for Admin

2011-03-08 Fir de Conversatie Marc Weber
Excerpts from Anurag Priyam's message of Wed Mar 09 04:27:13 + 2011: P.S: We need to move fast as the deadline for orgs to apply is 11th March. ... what happens if the student fails eg because the task caused more work than expected? Deadline of two days is so tight that I wonder whether

Re: google summer of code

2011-03-08 Fir de Conversatie ZyX
Reply to message «Re: google summer of code», sent 00:28:28 09 March 2011, Wednesday by Marc Weber: Why do you want to parse it? ... Didn't knew about this being a problem Can you elaborate a little bit in which cases this bothers you implementing signs? format.vim is an extensible

Proposed patch: NL in sub-replace-expression('\=')

2011-03-08 Fir de Conversatie motz
Hi, I would like to propose a patch which suppresses the conversion of NL to CR when evaluaation ('\=') is used inside substitute() function. Simply this patch is what makes x == y true in the following code. let x = substitute('a', '.', \n, ) let y = substitute('a', '.', '\=\n', ) The

Re: google summer of code

2011-03-08 Fir de Conversatie Christian Brabandt
On Tue, March 8, 2011 7:34 pm, Anurag Priyam wrote: In a discussion with current maintainers of vim.org regarding site re-write/re-thinking the topic of participating in Google Summer of Code was raised, and I feel that further discussion (if happening) should take place on this list. [many

:version erroneous

2011-03-08 Fir de Conversatie Axel
After using :version the display is cleared immediately, making it impossible to read the information shown. I'm using 7.3 138 here. Axel -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

'wildmenu with problems

2011-03-08 Fir de Conversatie Axel
Entering :echo w[tab] in 7.3 138 is giving me - instead of the first option starting with w - the following wildmenu expansion: [1] [No Name] Hitting [tab] again will display the SECOND possible extension, weirdinvert. Settings here are: wildchar=[Tab] wildcharem=0

Re: :version erroneous

2011-03-08 Fir de Conversatie Axel
Addendum: The same happens for :set all The OS is Windows XP. -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php

Re: :version erroneous

2011-03-08 Fir de Conversatie Christian J. Robinson
On Tue, 8 Mar 2011, Axel wrote: Addendum: The same happens for :set all The OS is Windows XP. Does it still happen if you do :set nolazyredraw? A recent patch to fix something else seems to have introduced this problem with 'lazyredraw'. Hopefully Bram will have a fix out soon. -