Re: Visible Spaces

2006-07-21 Thread panshizhu
This is what I'd thinked about. IMO, Consider use the Underlined group, The underlined is not a character, but it looks like a character. I guess this suit Johnson's need better. HTH -- Sincerely, Pan, Shi Zhu. ext: 2606 Benji Fisher [EMAIL PROTECTED] wrote on 2006.07.21 13:56:55:

Re: Awareness of python import semantics for [i, etc.?

2006-07-21 Thread Benji Fisher
On Thu, Jul 20, 2006 at 11:07:48AM -0700, John Reese wrote: Actually, you can't actually tell that from the import line. blag could also be a package (i.e. directory) containing a module Bok, defined in a file called Bok.py. That's what I had in mind. The following is an example of the

Re: edit-with-vim context menu item disappeared with vim7 upgrade

2006-07-21 Thread Thomas
My next step, I suppose is to review all the relevant registry keys, but I wanted to see if there were other thoughts on this...? At least in the source, there is a GvimExt.reg file. You can edit this file (add absolute paths) and add it to the registry (double-clicking on it should do that).

How can I know difference between Vim6.3 and Vim 6.2?

2006-07-21 Thread panshizhu
Hi, This may be a silly question, but I had done a search and did not found the answer. The help version7 tells difference between version6 and version7 However, 6.1 and 6.2 has differences, 6.2 and 6.3 has differences, where is the document about differences between the minor versions?

Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-07-21 Thread Dr Bean
On Wed, 12 Jul 2006, Dr Bean wrote: On Wed, 12 Jul 2006, Hakim Cassimally wrote: Also... at the moment the script in the manpage doesn't have a mapping to refresh the tags file. If you defined the sub after opening the file, it won't be seen until you close and reopen. (I'll probably

Re: How can I know difference between Vim6.3 and Vim 6.2?

2006-07-21 Thread Jürgen Krämer
Hi, [EMAIL PROTECTED] wrote: This may be a silly question, but I had done a search and did not found the answer. The help version7 tells difference between version6 and version7 However, 6.1 and 6.2 has differences, 6.2 and 6.3 has differences, where is the document about differences

Re: Visible Spaces

2006-07-21 Thread Pádraig Brady
Steve Hall wrote: On Fri, 2006-07-21 at 11:19 +0800, Stewart Johnson wrote: Is there a vim option to represent space characters in a file as a dot or something else not blank? Vim can only represent trailing spaces, not any intermediate ones. (Per the previously mentioned listchars

Re: gvimdiff and gvim 7 in windows

2006-07-21 Thread Benji Fisher
On Fri, Jul 21, 2006 at 01:19:56PM +0200, Robert Cussons wrote: gvimdiff part: In my .vimrc I have the line: set columns=88 lines=80 because this is the size I want my gvim window to be when it opens, however as gvimdiff opens at least two buffers I would like it to open full screen,

RE: Visible Spaces

2006-07-21 Thread Gene Kwiecinski
Would you be satisfied with changing the background color for spaces? Step 1: Ah, that's an idea. Just / to search for spaces (assumes highlighting's turned on), and they'll all be highlighted. He wants to turn off highlighting, just /qqq or something. Else maybe tweak the font to

Re: Visible Spaces

2006-07-21 Thread @ Rocteur CC
On 21 Jul 2006, at 05:19, Stewart Johnson wrote: Hi All - Sorry if this obvious but I couldn't find anything in :help or google. Is there a vim option to represent space characters in a file as a dot or something else not blank? Thanks, Stewart :set hls / That is slash then a space ;-)

Re: gvimdiff and gvim 7 in windows

2006-07-21 Thread A.J.Mechelynck
Robert Cussons wrote: gvimdiff part: In my .vimrc I have the line: set columns=88 lines=80 because this is the size I want my gvim window to be when it opens, however as gvimdiff opens at least two buffers I would like it to open full screen, is there a way of getting this to happen?

Mac OS 10.3 - v7.0 - netrwPlugin.vim

2006-07-21 Thread Vim List
Hello, I have not upgraded for some time, so today I did. I read a thread here about the new way the split vertical file explorer and the netrwPlugin.vim plugin. I also got used to the way the old directory and file list would open a file when clicked in the main window. So I changed the name

RE: Visible Spaces

2006-07-21 Thread Jason Weber
Would you be satisfied with changing the background color for spaces? Step 1: Ah, that's an idea. Just / to search for spaces (assumes highlighting's turned on), and they'll all be highlighted. He wants to turn off highlighting, just /qqq or something. Else maybe tweak the font to

Re: Visible Spaces

2006-07-21 Thread A.J.Mechelynck
Jason Weber wrote: Would you be satisfied with changing the background color for spaces? Step 1: Ah, that's an idea. Just / to search for spaces (assumes highlighting's turned on), and they'll all be highlighted. He wants to turn off highlighting, just /qqq or something. Else maybe

Re: Visible Spaces

2006-07-21 Thread Bill McCarthy
On Fri 21-Jul-06 12:51pm -0600, Jason Weber wrote: Ah, that's an idea. Just / to search for spaces (assumes highlighting's turned on), and they'll all be highlighted. He wants to turn off highlighting, just /qqq or something. I prefer /;; to turn off highlighting. the keys are right next

Other European languages on a US keyboard

2006-07-21 Thread cga2000
I sometimes need to write text in other languages such as French, Spanish and occasionally German or Italian. I would like to do this in Vim. Unfortunately I only have a US keyboard. Using Ctrl-K to enter the various digraphs becomes somewhat cumbersome for anything larger than a short

Re: Visible Spaces

2006-07-21 Thread Steve Hall
From: Bill McCarthy, Jul 21, 2006 2:14 PM I clear the last search pattern often enough that I use a mapping: map leader\ :let @/=barecho Search pattern clearedcr Which does the same as: :noh -- Steve Hall [ digitect dancingpaper com ]

Re: user defined command n/a in Tiny mode, any has() +xxx reqired for that?

2006-07-21 Thread Yakov Lerner
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Use if 1 | endif to wrap everything is possible, but not always, since the script may use finish to terminate itself and attach some data after the finish. In the Tiny version the finish is not possible, so the script will execute into the data and got

RE: Other European languages on a US keyboard

2006-07-21 Thread Gene Kwiecinski
Unfortunately I am only able to type the US keyboard, so remapping the keyboard might be a better solution than entering digraphs in the long run but will not be painless.. And since I do not do this on a regular basis, I am unsure whether it's really worth going to all the trouble. Would it be

Re: Visible Spaces

2006-07-21 Thread Bill McCarthy
On Fri 21-Jul-06 1:36pm -0600, Steve Hall wrote: From: Bill McCarthy, Jul 21, 2006 2:14 PM I clear the last search pattern often enough that I use a mapping: map leader\ :let @/=barecho Search pattern clearedcr Which does the same as: :noh They do produce the same immediate visual

Re: Other European languages on a US keyboard

2006-07-21 Thread A.J.Mechelynck
cga2000 wrote: I sometimes need to write text in other languages such as French, Spanish and occasionally German or Italian. I would like to do this in Vim. Unfortunately I only have a US keyboard. Using Ctrl-K to enter the various digraphs becomes somewhat cumbersome for anything larger than

Re: Perl::Tags (Was: perlcomplete.vim -- anyone working on this?

2006-07-21 Thread Hakim Cassimally
Have you got PERL5LIB set to look in lib/ and t/ ? Module::Locate defaults to looking at @INC. You could set this in your environment variables. Of course, it would be nice if Perl::Tags would look at: use lib qw( ); declarations and add those to where it looks for modules... By the way,

Re: Other European languages on a US keyboard

2006-07-21 Thread Yakov Lerner
On 7/21/06, cga2000 [EMAIL PROTECTED] wrote: I sometimes need to write text in other languages such as French, Spanish and occasionally German or Italian. I would like to do this in Vim. Unfortunately I only have a US keyboard. Using Ctrl-K to enter the various digraphs becomes somewhat

Re: scrolloff enhancement wish

2006-07-21 Thread Bram Moolenaar
Yakov Lerner wrote: Would you include into todo.txt the thing that I used in one very ancient but exceptionally smooth editor called K52 (it worked on pdp11, vt52 terminals). This editor always positioned cursor at 2/3 height from top of screen. This worked surprisingly well, even if it

Re: scrolloff enhancement wish

2006-07-21 Thread Matthew Winn
On Fri, Jul 21, 2006 at 10:02:10AM +0200, Bram Moolenaar wrote: Yakov Lerner wrote: How about adding the option 'scrollfix' [to the todo.txt], which would fix the cursor on fixed line, in percantage 0-100. Value ':set scrollfix=50' would work like ':set scrolloff=999'. Value ':set

Re: poll?

2006-07-21 Thread Mikolaj Machowski
Dnia czwartek, 20 lipca 2006 23:55, Bram Moolenaar napisał: Yakov Lerner wrote: Bram, How about posting a poll on www.vim.org site ? Two polls ! (1) Do you you vim6 or vim 7 ? (2) Do you use console-mode-vim or gvim ? What would we do with the outcome? While I don't understood reason for

Crazy wish: vimcat

2006-07-21 Thread mwoehlke
Is this possible? It just occurred to me that it would be great if there was a VIM-related program that would 'cat' in color using VIM's highlighting rules. Is this something that VIM could be made to do via scripting, or would it need to be a totally new program? If the latter, any guesses

Re: poll?

2006-07-21 Thread Kyle Wheeler
On Friday, July 21 at 07:11 PM, quoth A.J.Mechelynck: Mikolaj Machowski wrote: Dnia czwartek, 20 lipca 2006 23:55, Bram Moolenaar napisał: Yakov Lerner wrote: Bram, How about posting a poll on www.vim.org site ? Two polls ! (1) Do you you vim6 or vim 7 ? (2) Do you use console-mode-vim or