Japanese interface for vim7 in freebsd 6.1

2006-11-17 Thread vuthecuong
Does anyone is using vim7 on freebsd? When install vim7 from ports, which install option will make vim7 interface become japanese? Thanks in advanced

Re: Japanese interface for vim7 in freebsd 6.1

2006-11-17 Thread A.J.Mechelynck
vuthecuong wrote: Does anyone is using vim7 on freebsd? When install vim7 from ports, which install option will make vim7 interface become japanese? Thanks in advanced Vim (compiled with +multi_byte +multi_lang etc.) should start up in Japanese with no particular user intervention if the

Re: Commenting out TeX-text line by line in V-mode

2006-11-17 Thread Charles E Campbell Jr
Meino Christian Cramer wrote: From: Charles E Campbell Jr [EMAIL PROTECTED] Subject: Re: Commenting out TeX-text line by line in V-mode Date: Thu, 16 Nov 2006 13:34:16 -0500 How about :[range]g/\S/s/^/%/ which means: over the selected range (which may be the visual range), on all lines

Re: Commenting out TeX-text line by line in V-mode

2006-11-17 Thread A.J.Mechelynck
Charles E Campbell Jr wrote: Meino Christian Cramer wrote: From: Charles E Campbell Jr [EMAIL PROTECTED] Subject: Re: Commenting out TeX-text line by line in V-mode Date: Thu, 16 Nov 2006 13:34:16 -0500 How about :[range]g/\S/s/^/%/ which means: over the selected range (which may be the

Re: yank and put 'over' instead of 'insert'

2006-11-17 Thread Charles E Campbell Jr
Troy Piggins wrote: I use 'R' replace mode when doing, for example, ascii art etc because it allows me to change characters without affecting the layout of the rest of the window/page. But if I want to yank a section using visual or visual block, is there a way to put 'p' that block in without

Re: Commenting out TeX-text line by line in V-mode

2006-11-17 Thread Charles E Campbell Jr
A.J.Mechelynck wrote: It should be possible (though less obvious) to do it with only a substitute. Let's try: :','s/^.*\S.*$/# \0 i.e. prepend a hash sign and a space wherever we find start-of-line, zero or more of anything, one nonblank, zero or more of anything, end-of-line (in the

splits count

2006-11-17 Thread chak
How can i limit maximum splits number? How can i enable lines numeration by default? i'm using RExplorer plugin, and each new file is opened in new window and without lines numeration :( ps: RExplorer is cool -- View this message in context:

Re: Problem with Quickfix and Latex

2006-11-17 Thread Benji Fisher
On Thu, Nov 16, 2006 at 06:33:07PM -0200, Luis A. Florit wrote: Pals, I have a recurrent problem with quickfix and Latex. I use the tex.vim compiler by Srinath Avadhanula. I tried both the 2003 version contained in the last LatexSuite plugin

Re: using :ha under linux

2006-11-17 Thread Marlin Unruh
Benji Fisher wrote: On Thu, Nov 16, 2006 at 12:05:31PM -0700, Marlin Unruh wrote: [snip] I can print to the printer from OpenOffice or any other program but Vim. I get E365: Failed to print PostScript File. I can't remember what I did once awhile back and it worked. I entered something like

Re: using :ha under linux

2006-11-17 Thread A.J.Mechelynck
Marlin Unruh wrote: [...] Benji, :verbose set printexpr? give the following, all in one line. printexpr=system('lpr' . (printdevice == '' ? '' : ' -p' . printdevice) . ' ' . v:fname_in) . delete(v:fname_in + v:shell_error Is this any help? There is an unmatched parenthesis near the end

Re: splits count

2006-11-17 Thread chak
A.J.Mechelynck wrote: How can i enable lines numeration by default? :set number in your vimrc set nu is in gvimrc :( here screenshot: http://img174.imageshack.us/img174/1125/shotza0.png if vim is starting without RExplorer - all ok, rows numbers is enabled ...possible,

Can somebody move my cursor?

2006-11-17 Thread Zdenek Sekera
Hi, this code is heavily influenced by vim.org tip #1363 getchar trick using recursive expr map by Hari Krishna Dara. Clever code. The code has also been posted on vim-dev recently. I just reworked it a bit to understand it better. - imap buffer silent expr F12 Double(\F12) function!