Re: How to configure dbext profile to use Windows user account?

2013-10-22 Thread qihua wu
On Wednesday, October 29, 2008 4:40:08 AM UTC+8, David Fishburn wrote: I'm trying to configure a profile for dbext that uses my windows login to log into a SQL Server installation. Dropping the user= and password= fields does not help, as I just get an error message saying I'm not logged

Re: How to configure dbext profile to use Windows user account?

2013-10-22 Thread qihua wu
On Wednesday, October 29, 2008 4:40:08 AM UTC+8, David Fishburn wrote: I'm trying to configure a profile for dbext that uses my windows login to log into a SQL Server installation. Dropping the user= and password= fields does not help, as I just get an error message saying I'm not logged

Re: Vimtutor translation

2013-10-22 Thread Anton Shepelev
Joao Miguel: I use Vim in Portuguese [...] How do you keep normal-mode commands working without switching to English? Using mbyte-keymap? -- () ascii ribbon campaign - against html e-mail /\ www.asciiribbon.org - against proprietary attachments -- -- You received this message from the

Re: Vimtutor translation

2013-10-22 Thread Tony Mechelynck
On 22/10/13 11:01, Anton Shepelev wrote: Joao Miguel: I use Vim in Portuguese [...] How do you keep normal-mode commands working without switching to English? Using mbyte-keymap? I suppose you're joking? On a keyboard for any language using Latin script, from Portuguese to Finnish and

Re: Control of font via syntax highlighting

2013-10-22 Thread Christian Brabandt
On Tue, October 22, 2013 03:44, Suresh Govindachar wrote: Good that it is possible -- but how exactly (I am on Windows)? The awkwardness and other issues might be OK for my purposes. hi Normal ... font=Courier_New:h10:cANSI hi Special ... font=Consolas:h12:cANSI hi Ignore ...

Place a sign on each line between two regexps

2013-10-22 Thread esquifit
Hi I want to place a sign (:he signs) next to each line between two regexps Example Beginning with this file context 1 context 2 start line … line … end context 3 context 4 context 5 start line … line … end context 6 the goal is the following context 1 context 3 start line … line

Re: Vimtutor translation

2013-10-22 Thread BPJ
2013-10-22 12:14, Tony Mechelynck skrev: BTW, what I'm typing now is on the Belgian version of the AZERTY keyboard layout, similar but not identical to what they use in France. See http://users.skynet.be/antoine.mechelynck/other/keybbe.htm for details, and for how I have access to an almost

Re: Place a sign on each line between two regexps

2013-10-22 Thread Ben Fritz
On Tuesday, October 22, 2013 8:04:19 AM UTC-5, esquifit wrote: My first attempt was something like this: g:/start/+1;/end/-1 exe 'sign place 1 name='.line('.').' file='.expand('%:p') But this yielded a E481. Apparently exe doesn’t support address ranges. You are correct, exe

Re: Place a sign on each line between two regexps

2013-10-22 Thread esquifit
On Tuesday, October 22, 2013 5:57:58 PM UTC+2, Ben Fritz wrote: On Tuesday, October 22, 2013 8:04:19 AM UTC-5, esquifit wrote: [...] :g#start#+1,/end/-1normal! @q Again I use # for the delimiter for the :g command. The :g command will run a command on every line matching start because

Is there a setting to allow case insensitive completion on e: and :find?

2013-10-22 Thread skeept
When I use :e file I can use tab to give me completions matching the file name I am typing if it has the same case. Is there a setting to allow completion even if the the case does not match? Regards, Jorge -- -- You received this message from the vim_use maillist. Do not top-post! Type

Re: Is there a setting to allow case insensitive completion on e: and :find?

2013-10-22 Thread Taylor Hedberg
skeept, Tue 2013-10-22 @ 14:47:52-0700: Is there a setting to allow completion even if the the case does not match? :set wildignorecase signature.asc Description: Digital signature

Re: Place a sign on each line between two regexps

2013-10-22 Thread Ben Fritz
On Tuesday, October 22, 2013 3:46:09 PM UTC-5, esquifit wrote: On Tuesday, October 22, 2013 5:57:58 PM UTC+2, Ben Fritz wrote: Or maybe a normal command with a range: :g#start#+1,/end/-1normal! :exe 'sign place 1 name=Foo line='.line('.').' file='.expand('%:p')^M This is indeed