Re: Selecting tag opens file in a new tab - how?

2007-03-23 Thread A.J.Mechelynck
Zarko Coklin wrote: I posted following question some time back: ~ Is it possible to have a setup in .vimrc so that every time I select tag either through CTRL-] or by holding CTRL and pressing left mouse click to open a new buffer in a new tab? and got following

Re: Error

2007-03-23 Thread A.J.Mechelynck
felipe fernandez wrote: I update vim 6.3 to 7.0 on my debian. The error is Se ha detectado un error al procesar /usr/share/vim/vim70/menu.vim: línea 150 E121: Variable sin definir: paste#paste_cmd. E15: Expresión no válida: 'vnoremenu script Edit.PasteTab+gP^I' . paste#paste_cmd['v'] Thanks

Re: Error

2007-03-23 Thread A.J.Mechelynck
Andreas Bakurov wrote: felipe fernandez wrote: I update vim 6.3 to 7.0 on my debian. The error is Se ha detectado un error al procesar /usr/share/vim/vim70/menu.vim: línea 150 E121: Variable sin definir: paste#paste_cmd. E15: Expresión no válida: 'vnoremenu script Edit.PasteTab+gP^I' .

Project script

2007-03-23 Thread Claus Atzenbeck
Hi all: I started using the Project script http://www.vim.org/scripts/script.php?script_id=69. Apparently, it cannot gather files recursively in subdirectories, for example: project/a/test.tex project/b/c/abc.tex project/d/e/xyz.tex I would like to have all *.tex files

Re: Highlight a specific character using colorscheme?

2007-03-23 Thread A.J.Mechelynck
flope wrote: Hi, this is my second post. so I am new in vim (gvim). I would like to know if it possible to highlight a specific character such as ; differently from others. I tried different things but without success. Should I do that in my color scheme? Don't use a colorscheme, use the

Re: question about omni-complete

2007-03-23 Thread A.J.Mechelynck
shawn bright wrote: lo there, i just discovered omni-complete . i am starting to use vim for some python and ruby scripting for work. i found omni-complete. I can type time.ctrl-x ctrl-o and a list of funtions pop up for me to choose. but how do i navigate the list without using arrow keys ?

Re: Project script

2007-03-23 Thread A.J.Mechelynck
Claus Atzenbeck wrote: Hi all: I started using the Project script http://www.vim.org/scripts/script.php?script_id=69. Apparently, it cannot gather files recursively in subdirectories, for example: project/a/test.tex project/b/c/abc.tex project/d/e/xyz.tex I would like

Undo Levels Reset

2007-03-23 Thread Vigil
When a file is saved with :w, any changes in the undo history are lost and I can't undo things to get back to a state before I saved the file. How can I prevent the history being lost? -- .

Re: Undo Levels Reset

2007-03-23 Thread A.J.Mechelynck
Vigil wrote: When a file is saved with :w, any changes in the undo history are lost and I can't undo things to get back to a state before I saved the file. How can I prevent the history being lost? Huh? When I save a file, undo levels are kept. Using u then undoes, but marks the file as

Re: Project script

2007-03-23 Thread Mika Fischer
Hi Claus, claus Atzenbeck schrieb: I started using the Project script http://www.vim.org/scripts/script.php?script_id=69. Apparently, it cannot gather files recursively in subdirectories, for example: project/a/test.tex project/b/c/abc.tex project/d/e/xyz.tex In the

Re: Failed to print PostScript file

2007-03-23 Thread Jabba Laci
Hi, I found the problem. In the line call system(lpr -h . a:fname), there must be a space after -h, i.e.: call system(lpr -h . a:fname). Laszlo On 3/8/07, Jabba Laci [EMAIL PROTECTED] wrote: Hi, Until now I could print my files from Vim using the :ha command. I have the following

Re: Undo Levels Reset

2007-03-23 Thread Tobia
A.J.Mechelynck wrote: When I save a file, undo levels are kept. Using u then undoes, but marks the file as modified. Using Ctrl-R redoes, and the 'modified' flag will disappear when the file-in-memory is identical to the file-on-disk. This is my experience as well. Undo levels are only lost

Re: Project script

2007-03-23 Thread Claus Atzenbeck
On Fri, 23 Mar 2007, Mika Fischer wrote: In the project window you can use \c to generate a new project fold. It will ask you a few things an generate it for you. In your case you may want to use \C which works recursively. Furthermore, whenever I add another .tex file somewhere in project/

Re: Project script

2007-03-23 Thread Mika Fischer
Hi Claus, * Claus Atzenbeck [EMAIL PROTECTED] [2007-03-23 13:20]: Thanks for your mail. \C works perfectly, however \R seems not to add recently created subdirectories. That's true. Is there a way to update a Project entry as if I would create a new entry with \C? Not that I know of. I

Re: Highlight a specific character using colorscheme?

2007-03-23 Thread flope
Thanks a lot. It works! Very instructive. -- View this message in context: http://www.nabble.com/Highlight-a-specific-character-using-colorscheme--tf3450062.html#a9637945 Sent from the Vim - General mailing list archive at Nabble.com.

Re: Undo Levels Reset

2007-03-23 Thread Vigil
Hmm. My bad, I guess. I must have had some weird settings at the time. Sorry, list! A.J.Mechelynck wrote: When I save a file, undo levels are kept. Using u then undoes, but marks the file as modified. Using Ctrl-R redoes, and the 'modified' flag will disappear when the file-in-memory is

Error In Documentation?

2007-03-23 Thread Vigil
In vim's: VIM - Vi IMproved 7.0 (2006 May 7, compiled May 30 2006 13:06:19) VIM - Vi IMproved 6.4 (2005 Oct 15, compiled May 23 2006 12:03:57) in :help makeprg, I think the {$*} in the example ought to be ${*}. At least, it wouldn't work for me unless I did that. -- .

Re: Count characters

2007-03-23 Thread Harald Kröll
Andy Wokula schrieb: Tim Chase schrieb: Is there some function or script to count characters (letters without whitespaces) in vim? For example Kile the Latex Editor has such a feature to control how long texts are. You can use :%s/\w//g which will report back X substitutions on Y

Re: Error In Documentation?

2007-03-23 Thread Bram Moolenaar
Vigil wrote: In vim's: VIM - Vi IMproved 7.0 (2006 May 7, compiled May 30 2006 13:06:19) VIM - Vi IMproved 6.4 (2005 Oct 15, compiled May 23 2006 12:03:57) in :help makeprg, I think the {$*} in the example ought to be ${*}. At least, it wouldn't work for me unless I did that. No, it's

Re: Project script

2007-03-23 Thread fREW
On 3/23/07, Mika Fischer [EMAIL PROTECTED] wrote: Hi Claus, * Claus Atzenbeck [EMAIL PROTECTED] [2007-03-23 13:20]: Thanks for your mail. \C works perfectly, however \R seems not to add recently created subdirectories. That's true. Is there a way to update a Project entry as if I would

How to save/quit on easy mode

2007-03-23 Thread Filipe Tavares
I want to use vim's easy mode (-y) for entering comments when committing to my version control system. But I couldn't find any documentation on how to save/quit on easy mode. Can anybody tell me how to do this?

Re: Count characters

2007-03-23 Thread Tobia
Harald Kröll wrote: a command or script to count the characters without syntax words. For example for people who write LaTeX documents in vim and have to control their length... That depends on the definition of a control word. If you only want to exclude \backslash_prefixed \words, and

pasting very long text at command-line

2007-03-23 Thread Hari Krishna Dara
This happened to me always by mistake and what happened today was the worst. Forgetting that I have copied large amount of text into the clipboard, I tried to paste it at the search prompt using ^R* and this caused Vim to hang for a very long time and pressing ^C had no effect. I remember that

Jump to tag opens VIM in a new Microsoft Windows XP window

2007-03-23 Thread Waters, Bill
When I jump to a tag reference in a different file, can I have VIM open that file in a new Microsoft Window?  As it works now, I jump to the new file in the same VIM session.  I have three problems with that: 1. VIM will not jump to the tag unless all of the changes in my current file have

IDE's Vim 7 and Apple OS X

2007-03-23 Thread Joseph White
Hi All, When you download c.vim : C/C++-IDE, BASH-IDE, or Perl-IDE, for example, the directions to install and get the menu items to show up, goes as follows: install details Copy the zip archive cvim.zip to $HOME/.vim/ and run unzip cvim.zip While this works fine on Linux; Mac OS X

Re: Jump to tag opens VIM in a new Microsoft Windows XP window

2007-03-23 Thread Gary Johnson
On 2007-03-23, Waters, Bill [EMAIL PROTECTED] wrote: When I jump to a tag reference in a different file, can I have VIM open that file in a new Microsoft Window?  As it works now, I jump to the new file in the same VIM session.  I have three problems with that: 1. VIM will not jump to

How to remove all indenting features on Windows GVIM

2007-03-23 Thread Kiernan Holland
This is the most annoying of the features on GVIM.. I like GVIM because it had syntax highlighting, but my fingers are programmed to handle indenting with just the basic indenting that is standard even on the elder vi implementation. How it's hurting me now, an example in PHP: if

Re: How to remove all indenting features on Windows GVIM

2007-03-23 Thread Gary Johnson
On 2007-03-23, Kiernan Holland [EMAIL PROTECTED] wrote: This is the most annoying of the features on GVIM.. I like GVIM because it had syntax highlighting, but my fingers are programmed to handle indenting with just the basic indenting that is standard even on the elder vi implementation. I

How to turn a q recording into a map?

2007-03-23 Thread noah
Somehow it never occured to me that I could view and edit the contents of a recording. Of course, it's just a register, so I pasted the register; edited the contents; then yanked the lines back into the register... and naturally this worked fine. I was thinking that there should be a way to take

Re: How to turn a q recording into a map?

2007-03-23 Thread Jean-Rene David
* [EMAIL PROTECTED] [2007.03.23 19:45]: I was thinking that there should be a way to take the register lines and automatically turn them into an noremap (including adding the @ to start register playback). Has anyone perfected this? If you want your mapping to follow the (possibly changing)

Re: Selecting tag opens file in a new tab - how?

2007-03-23 Thread Andy Wokula
A.J.Mechelynck schrieb: Zarko Coklin wrote: I posted following question some time back: ~ Is it possible to have a setup in .vimrc so that every time I select tag either through CTRL-] or by holding CTRL and pressing left mouse click to open a new buffer in a new

hosting wiki tips

2007-03-23 Thread Hari Krishna Dara
I know this came up during the recent discussions on using wiki for tips and it was ruled out. I don't remember exactly what the reason was and there are too many messages to go through, so I would like to pose this question again. I came across this free hosting website called 110mb.com which

Re: pasting very long text at command-line

2007-03-23 Thread A.J.Mechelynck
Hari Krishna Dara wrote: This happened to me always by mistake and what happened today was the worst. Forgetting that I have copied large amount of text into the clipboard, I tried to paste it at the search prompt using ^R* and this caused Vim to hang for a very long time and pressing ^C had no

Re: IDE's Vim 7 and Apple OS X

2007-03-23 Thread A.J.Mechelynck
Rui Gonçalves wrote: if you put the '~/.vim' directory in the runtime path (set runtimepath=~/.vim,...) probably you can put the file in this directory. i think you also can put the files in the directory where vim is installed (for example '/usr/share/vim/vim70'). *DON'T.* Any upgrade may

Re: Bug report : Spell checking doesn't know about HTML entities

2007-03-23 Thread A.J.Mechelynck
Bram Moolenaar wrote: Tony Mechelynck wrote: In languages using accented letters, the Vim spell checker doesn't recognise HTML entities (in HTML text): for example, the letters outside of the ...; entities are highlighted as spellBad (after :set spell spelllang=fr) in the following French

Re: Bug report : Spell checking doesn't know about HTML entities

2007-03-23 Thread A.J.Mechelynck
François Pinard wrote: [Bram Moolenar] Tony Mechelynck wrote: In languages using accented letters, the Vim spell checker doesn't recognise HTML entities (in HTML text) [...] You'll have to check if using and ; in the middle of a word is causing trouble. Adding them to word characters