Re: Running python scripts from Vim

2006-07-28 Thread James Vega
gt; not work. But now it really starts to shape up :-) You might be interested in trying out PIDA (http://pida.berlios.de/). James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: CTRL-S under WXP and Linux

2006-07-17 Thread James Vega
es. You may be able to disable it through the stty command. HTH, James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Sudden problem with: exe "set listchars=tab:\xbb\xb7,trail:\xb7"

2006-07-13 Thread James Vega
like you're running Vim in an environment that doesn't understand those characters. You'll probably want to check what 'encoding' is. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: why does this mapping interpret the literal and not work?

2006-07-11 Thread James Vega
now why? You've made a normal mode mapping. You want to perform a command-line mode command, but you haven't entered command-line mode. Adding a : should fix your problem. :) :nmap zz :w! HTH, James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Irritating column numbers with encoding=utf-8

2006-07-05 Thread James Vega
acter count like you want. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Bug in chaining dictionary function calls

2006-06-22 Thread James Vega
;t know that bugs can now be reported at sourceforge. I added my > comment. They can't. The description for that tracker is: This is the bug tracker for the vim online website (not vim itself). If you have problems with (vim the text editor) please mail [EMAIL PROTECTED] James -

Re: Restore cursor to last line not working in Vim 7

2006-06-07 Thread James Vega
ot; may have previously been in the system-wide vimrc but was removed or replaced by a new vimrc. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: display tweaks - tilde lines, statusline..

2006-06-05 Thread James Vega
es not have a black background. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Functions developed in 6.4, to be used in 7

2006-06-02 Thread James Vega
oking for. > - has there anything changed significantly re. the function handling > between 6 and 7? Not that I know of, but ":he version7" should list any significant changes. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Syntax Highlighting: Vim 7, Debian

2006-05-30 Thread James Vega
won't purge already removed packages. -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: detecting a readonly file and not doing something...

2006-05-30 Thread James Vega
On Tue, May 30, 2006 at 09:16:38AM -0400, James Vega wrote: > On Tue, May 30, 2006 at 09:04:15AM -0400, Robert Hicks wrote: > > I currently have this: > > > > autocmd BufEnter * :%s/[ \t\r]\+$//e" get rid of the pesky ^M > > > > However, it gives me an

Re: detecting a readonly file and not doing something...

2006-05-30 Thread James Vega
ing along the lines of autocmd BufEnter * :if &ro | %s/[ \t\r]\+$//e | endif should do the trick. ":help expr-option" shows the different ways you can access options in expressions. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Perl Support in Debian

2006-05-25 Thread James Vega
On Thu, May 25, 2006 at 02:38:30PM -0400, William O'Higgins Witteman wrote: > On Thu, May 25, 2006 at 01:26:12PM -0400, James Vega wrote: > >On Thu, May 25, 2006 at 12:02:35PM -0400, William O'Higgins Witteman wrote: > >> I'm hoping someone has a quick fix for

Re: Need to Add 6 lines to many files

2006-05-25 Thread James Vega
On Thu, May 25, 2006 at 02:46:32PM -0400, Mike Blonder wrote: > On Thu, 2006-05-25 at 14:05 -0400, James Vega wrote: > > On Thu, May 25, 2006 at 01:59:31PM -0400, Mike Blonder wrote: > > > Hi. > > > > > > I cannot find a good example in the documentation

Re: Need to Add 6 lines to many files

2006-05-25 Thread James Vega
n a register, then you can just use the :put command to do what you want. For example, if the text was in register a and you wanted to put it after line 24 in every file: :argdo 24put a James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Perl Support in Debian

2006-05-25 Thread James Vega
t works, then there's probably another variant of Vim installed which is being pointed to by the alternatives system. You can see what alternatives are providing the vim binary via: /usr/sbin/update-alternatives --display vim HTH, James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: viminfo feature not working after upgrade from vim6.2->vim7.0

2006-05-23 Thread James Vega
at ":help last-position-jump" to your .vimrc to re-enable that behavior. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: weird issue with :put

2006-05-22 Thread James Vega
is used. In this case, it appears that contained a variable that was no longer in scope. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Visual Block: $ vs. ^ inconsistency?

2006-05-19 Thread James Vega
our visual block will be a solid block as long as you don't use $ to form the selection. Using the arrow keys or h,j,k,l will behave as you expect. $ will always select to the end of the text on the line and not past it. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL

Re: Detect current tab style and mimic?

2006-05-12 Thread James Vega
t the indentation style of the buffer and set the proper options. James [0] - http://www.vim.org/scripts/script.php?script_id=1171 -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Problem^M

2006-05-05 Thread James Vega
a dos file and doesn't have mixed up line-endings :e ++ff=dos should work. Although, if you haven't changed the default value of 'fileformats', it would seem like the file has inconsistent line-endings somewhere. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Vim 7.0 tablist question

2006-05-05 Thread James Vega
page with one window, then there will only be one buffer returned from tabpagebuflist(). James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Vim 7.0 tablist question

2006-05-05 Thread James Vega
displayed in another window/tab page. Buffer's aren't tied to any specific window or tab page. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: regex @vim, negating a group

2006-05-02 Thread James Vega
orces there to be 3 more characters and the end of word when you try to match 'ion'. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: issues with taglist and minibuffer explorer

2006-05-01 Thread James Vega
etting frustrated with MiniBufExpl.vim. HTH, James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: vim prison ?

2006-04-27 Thread James Vega
^, :b1, etc. :bd is like putting the buffer away in a closet. You can still come back and get it if you need to and all the information associated with it (like marks, its buffer number, the buffer-local options, etc) will be remembered. In order to go that extra step and really make Vim forget about the buffer, you need to use :bw (:bw! to abandon changes). James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: vim prison ?

2006-04-27 Thread James Vega
for more info on how to interact with buffers in Vim. HTH, James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: How can I detect the OS?

2006-04-26 Thread James Vega
). if has('win32') ... win32 specific stuff ... endif Search for "version of Vim" from the feature-list help topic and that should bring you to the different versions for which you can check. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTEC

Re: beta 7.0e and cmdline_comp on ubuntu

2006-04-20 Thread James Vega
024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: vim7.0d from CVS

2006-04-12 Thread James Vega
g of April. They haven't enabled syncing the anonymous CVS with developer CVS. You can keep track of this at <http://sourceforge.net/docs/A04>. For now, I'd suggest just using the snapshots at <ftp://ftp.vim.org/pub/vim/unstable/snapshot>. James -- GPG Key: 1024D/61326D40

Re: Vim-list improvement suggestions

2006-04-11 Thread James Vega
uot; to test whether James really gets only one copy. Only one copy received. :) James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: Vim-list improvement suggestions

2006-04-09 Thread James Vega
to recognize that a copy has already been sent to someone subscribed to the list and doesn't send a duplicate message. James -- GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]> signature.asc Description: Digital signature

Re: $VIMRUNTIME, etc.

2006-04-08 Thread James Vega
BTS. If the problem ends up being an upstream problem and not something with the packaging or a bad upgrade, we will forward your problem to the proper people. I have an idea of what your problem is, but this really isn't the place to discuss it. If you'd like to follow up with m