Re: added completion to the :setfiletype command.

2010-07-29 Fir de Conversatie François Ingelrest
Hi, 2010/7/28 Dominique Pellé: I'm sorry, I messed up again and forgot one file in the patch :-( Here it is again. This new feature is great! It's easier and a bit faster to have completion at hand when setting the file type. One (maybe silly) question though: Isn't it possible to use

Re: added completion to the :setfiletype command.

2010-07-29 Fir de Conversatie Jürgen Krämer
Hi, François Ingelrest wrote: One (maybe silly) question though: Isn't it possible to use completion also with :set ft= ? It's not that I can't use :setf, just that I'm used to the former and thought that the patch wasn't working at first. that would make :set ft= behave differently from

Re: added completion to the :setfiletype command.

2010-07-29 Fir de Conversatie Benjamin R. Haskell
On Thu, 29 Jul 2010, Jürgen Krämer wrote: Hi, François Ingelrest wrote: One (maybe silly) question though: Isn't it possible to use completion also with :set ft= ? It's not that I can't use :setf, just that I'm used to the former and thought that the patch wasn't working at

A few notes

2010-07-29 Fir de Conversatie Dimitar DIMITROV
Hi, I've noticed that there is no mention in the help files that one can use things like: 1. :h i^x^k or even :h^x^k instead of :h i_CTRL-X_CTRL-K 2. [count] gqq will format count lines Cheers -- You received this message from the vim_dev maillist. Do not top-post! Type

Re: \Plug =~# \Plug = 0

2010-07-29 Fir de Conversatie Jürgen Krämer
Hi, Bram Moolenaar wrote: Tyru Exe wrote: Hi list. I tested this code on vim73. :echo \Plug =~# \Plug= 0 Is this right behavior? Yes, using \Plug as a regexp will give unpredictable behavior. It's not a valid pattern. why? AFAIU \Plug is equivalent to 'Plug' and this is a

Re: \Plug =~# \Plug = 0

2010-07-29 Fir de Conversatie Peter Odding
Jürgen Krämer wrote: why? AFAIU \Plug is equivalent to 'Plug' and this is a valid pattern. Double quoted strings in Vimscript can contain special keys like \CR which define special key mappings, see :help expr-quote. You can try it yourself: :echo \Plug 80fdS :echo

Re: \Plug =~# \Plug = 0

2010-07-29 Fir de Conversatie Jürgen Krämer
Hi, Peter Odding wrote: Jürgen Krämer wrote: why? AFAIU \Plug is equivalent to 'Plug' and this is a valid pattern. Double quoted strings in Vimscript can contain special keys like \CR which define special key mappings, see :help expr-quote. You can try it yourself: :echo \Plug

tab Competing after ~ on Windows

2010-07-29 Fir de Conversatie Dimitar DIMITROV
Hi, On linux systems I can open Vim and type: :e~/dtab which expands (for me) to :e~/dev/ and I can go on... but on Windows: :e~/dtab expands to :eD:\dev\ and therefore I can't go on with my completion unless I start over again using :e ~/dtab (note the space) The whole point is: I need a

Re: Looking for test coordinator

2010-07-29 Fir de Conversatie Marc Weber
Is anyone aware of anything like a terminal-emulator version of Selenium? cat the-testsuite.bin | vim ... expect can record sessions. I don't know how easy it is to write test cases that way. The problem is that you can't look at Vim while its doing its work. XTest could be another option - I

Re: Conceal Bugs

2010-07-29 Fir de Conversatie Ben Fritz
On Jul 28, 11:17 am, Bram Moolenaar b...@moolenaar.net wrote: I have fixed this now.  Please check for any remaining problems. Confirmed, latest build fixes all the problems I saw in my test file. -- You received this message from the vim_dev maillist. Do not top-post! Type your reply

Re: Looking for test coordinator

2010-07-29 Fir de Conversatie Nazri Ramliy
On Thu, Jul 29, 2010 at 10:49 PM, Marc Weber marco-owe...@gmx.de wrote: Is anyone aware of anything like a terminal-emulator version of Selenium? What if we had some helper command that dumps how the current screen look like so that it can be compared with some expected_dump.txt? Something

Re: Windows 7 double-click file brings up empty vim

2010-07-29 Fir de Conversatie Stormy
I have the same problem with 7.3b BETA on Windows XP SP3 32-bit, having associated a filetype by right-clicking in Windows Explorer and setting it to always open in gvim.exe. On Jul 28, 3:57 pm, Bram Moolenaar b...@moolenaar.net wrote: Garner Halloran wrote: On Tue, Jul 27, 2010 at 6:52 PM,

Re: [patch] Add logcheck filetype

2010-07-29 Fir de Conversatie James Vega
On Wed, Jul 28, 2010 at 9:08 AM, Bram Moolenaar b...@moolenaar.net wrote: James Vega wrote: Attached patch adds support for detecting logcheck's[0] rules files[1] as the logcheck filetype.  The one use, so far, is to disable automatic wrapping of text since each line is supposed to contain a

Re: Looking for test coordinator

2010-07-29 Fir de Conversatie Bram Moolenaar
Nazri Ramliy wrote: On Thu, Jul 29, 2010 at 10:49 PM, Marc Weber marco-owe...@gmx.de wrote: Is anyone aware of anything like a terminal-emulator version of Selenium? What if we had some helper command that dumps how the current screen look like so that it can be compared with some

Re: added completion to the :setfiletype command.

2010-07-29 Fir de Conversatie Bram Moolenaar
Dominique Pellé wrote: Here is the updated patch taking into account Nazri's comments. Using fnamecmp() is fine indeed after rethinking about it. I'm sorry, I messed up again and forgot one file in the patch :-( Here it is again. Thanks, I'll include it now. Please make any further

Re: A few notes

2010-07-29 Fir de Conversatie Bram Moolenaar
Dimitar Dimitrov wrote: I've noticed that there is no mention in the help files that one can use things like: 1. :h i^x^k or even :h^x^k instead of :h i_CTRL-X_CTRL-K I'll add something about that in helphelp.txt. 2. [count] gqq will format count lines The count is not

Patch 5 second tutorial

2010-07-29 Fir de Conversatie David Fishburn
I need to update insert.txt and provide a patch to Bram. I have never done anything like this (on windows if it matters) and was hoping someone could give me a 5 second list of the commands (and any backup files you take first) before doing this so I know what to send to Bram. I already

Re: Patch 5 second tutorial

2010-07-29 Fir de Conversatie Christian Brabandt
Hi David! On Do, 29 Jul 2010, David Fishburn wrote: I need to update insert.txt and provide a patch to Bram. I have never done anything like this (on windows if it matters) and was hoping someone could give me a 5 second list of the commands (and any backup files you take first) before

Re: [patch] Add logcheck filetype

2010-07-29 Fir de Conversatie Bram Moolenaar
James Vega wrote: Attached patch adds support for detecting logcheck's[0] rules files[1] as the logcheck filetype. Â The one use, so far, is to disable automatic wrapping of text since each line is supposed to contain a single regular expression. A pattern that ends in a star needs

Re: Should 2html generate valid CSS by default?

2010-07-29 Fir de Conversatie Bram Moolenaar
Benjamin Fritz wrote: On Wed, Jul 28, 2010 at 3:39 PM, Bram Moolenaar b...@moolenaar.net wrote: The documentation clearly says: By default, HTML optimized for old browsers is generated. If you prefer using cascading style sheets (CSS1) for the attributes (resulting in considerably

Re: Patch: set ft=perl6 on #!.../perl6

2010-07-29 Fir de Conversatie Bram Moolenaar
Michael Schaap wrote: In honour of the impending Rakudo Star release, would you accept this patch which sets ft to perl6 instead of perl when the hashbang contains perl6? OK. I understand that perl6 is really a different language than perl, right? Thanks, and a Merry Christmas¹, What