RE: Making Omni Complete suggest but not complete

2006-06-19 Thread Jared Parsons
> -Original Message- > From: Linsong [mailto:[EMAIL PROTECTED] > Sent: Monday, June 19, 2006 12:58 AM > To: Jared Parsons > Cc: vim@vim.org > Subject: Re: Making Omni Complete suggest but not complete > > Jared Parsons wrote: > > >Is there any way to m

RE: Making Omni Complete suggest but not complete

2006-06-16 Thread Jared Parsons
> -Original Message- > From: Hari Krishna Dara [mailto:[EMAIL PROTECTED] > Sent: Friday, June 16, 2006 2:54 PM > To: Jared Parsons > Cc: vim@vim.org > Subject: RE: Making Omni Complete suggest but not complete > > > On Fri, 16 Jun 2006 at 2:23pm, Jared Par

RE: Making Omni Complete suggest but not complete

2006-06-16 Thread Jared Parsons
case you can't insert the existing text (there isn't any) and if you try and return '' as one of the valid words omni complete will just ignore it. Jared -Original Message- From: Hari Krishna Dara [mailto:[EMAIL PROTECTED] Sent: Friday, June 16, 2006 12:34 PM To: Ja

Making Omni Complete suggest but not complete

2006-06-16 Thread Jared Parsons
the buffer.  -- Jared

Re: matchparen bug?

2006-06-07 Thread Jared
gate. I'm a little puzzled why Benji and I are seeing this issue, but Ilya is not. Can anyone else either confirm or refute this? Is it perhaps a Windows-specific bug? I only currently have access to Vim 7 on a Windows system, so I'm unable to test it under Linux. -- Jared Breland [EMAIL PROTECTED] http://www.legroom.net/

Re: sftp file browsing

2006-05-30 Thread Jared
On 05/30/2006 13:00, Thor Andreassen wrote: > On Tue, May 30, 2006 at 11:19:11AM -0500, Jared wrote: >> Is it possible to browse a remote folder through FTP? Eg, if I enter >> ':e .' it'll display the directory browser for the current directory. >> How can

sftp file browsing

2006-05-30 Thread Jared
if I don't know the exact filename I'd like to be able to run something like ':e sftp://sage/nessus_conf/' to get a directory listing. Thanks. -- Jared

Re: right-to-left text selection

2006-05-21 Thread Jared
p, Gerald. With this I'm finally able to mark the last thing of my vimrc todo list. :-) -- Jared

Re: using variables in ! command

2006-05-17 Thread Jared
On 5/18/2006 12:31 AM, A.J.Mechelynck wrote: > :exe 'silent ! start "" "' . $PROGRAMFILES . '\Inno Setup\Isetup.hlp"' That did it! Thanks a bunch, Tony. -- Jared

Re: using variables in ! command

2006-05-17 Thread Jared
On 5/18/2006 12:08 AM, Yakov Lerner wrote: > Try > > map :exe ":silent! start ".isshelp Thanks for the reply, Yakov. However, that gives me an error message: E121: Undefined variable: isshelp E15: Invalid expression":silent! start ".isshelp Any other ideas? -- Jared

ctrl+shift key mappings

2006-05-17 Thread Jared
7;s also ignored. Thanks once again. Believe me when I say that I'm most appreciative of the help that's constantly offered on this mailing list. -- Jared

using variables in ! command

2006-05-17 Thread Jared
he correct string, but it's output literally rather than treated as a variable Like I said, I know this is a pitiful problem, but I'm running out of ideas. What am I doing wrong? -- Jared

Re: right-to-left text selection

2006-05-17 Thread Jared
the text, then hit ^gol^c, I can finally select all text, including the last character. Yay! Not exactly the easiest key sequence, but at least I can make it work now. Thanks, Eric! -- Jared

Re: right-to-left text selection

2006-05-17 Thread Jared
Sorry, must've just misunderstood you. Would you mind explaining again? Thanks. -- Jared

Re: right-to-left text selection

2006-05-17 Thread Jared
ll delete to the "onemore" position, then sit there doing nothing. It's definitely a good suggestion. I just have too many nuisances. :-) -- Jared

right-to-left text selection

2006-05-16 Thread Jared
. Does this even make sense? Given how many times I used the word "select", probably not. :-) Please let me know if this comes across as gibberish and I'll try to better explain myself. Thanks! -- Jared

Re: sourcing vimrc files

2006-05-16 Thread Jared
ppreciate the feedback and read up on the suggested commands, but this ended up being the easiest. :-) -- Jared

Re: Installation probs in windows

2006-05-16 Thread Jared
g copies. I created this installer back when Vim 6.3 and have been using it since, and it's been very reliable for me. -- Jared Breland [EMAIL PROTECTED] http://www.legroom.net/ On 05/16/2006 14:09, Adam Young wrote: > I am dying to use the new v of vim but, while using the exe installer, &

sourcing vimrc files

2006-05-14 Thread Jared
/better way of doing this, I'm certainly open to suggestions. :-) This is on Windows XP. Thanks. -- Jared

Re: echo question

2006-05-14 Thread Jared
n whether it's called interactively or as part of a function, but by adding the three ruler lines you suggested above I was able to make it work correctly. Thanks! -- Jared

Re: scrolling in vim7 on winxp?

2006-05-14 Thread Jared
when you say scrolling, do you mean with a mouse wheel? Or moving dragging the scroll bar? Or something else? I tried to duplicate this behavior, but was unable to do so. Vim's working fine on my copy of Windows XP. This is the stock version, though. -- Jared Breland [EMAIL PROTECTED]

Re: echo question

2006-05-14 Thread Jared
those are applicable. The line is not longer than the window width. In fact, this is the function: function Toggle_spell() if &spell exec "set nospell" else exec "set spell" echo "]s to skip to word, zg to add word, z= to suggest word" endif endfunction nmap :call Toggle_spell() I just want to display a message in the status reminding me of the commands when I enable the spell checker. Any other ideas? Thanks. -- Jared

echo question

2006-05-13 Thread Jared
o I make it not do that? Eg, I just want it to display the message, not prompt me to press a key. Thanks. -- Jared

Re: set highlight color?

2006-05-12 Thread Jared
Thanks, Gerald. This worked perfectly. I didn't realize that I had to apply the highlight setting directly to CursorLine. I was trying to group it under Normal. Oops. :-) -- Jared On 5/12/2006 2:44 PM, Gerald Lai wrote: > Just like you did with Normal, you can do with CursorL

Re: get Vim option value?

2006-05-12 Thread Jared
Dang, that works perfectly. I tried so many different special characters prepended, appended, and surrounding numberwidth, but I never tried &. Is that discussed in the Vim docs? Can you let me know where so I can read through for further reference? Thanks! -- Jared On 05/12/2006 14:18,

set highlight color?

2006-05-12 Thread Jared
ght Normal guifg=white guibg=black Any suggestions? Thanks. -- Jared

get Vim option value?

2006-05-12 Thread Jared
do I do this? Thanks. -- Jared