Re: RFE: :amap and :menu buffer

2006-11-10 Thread Benji Fisher
with disabled menus. --Benji Fisher

RFE: :amap and :menu buffer

2006-11-09 Thread Benji Fisher
. --Benji Fisher

Re: script able to detect +NUM commandline option ?

2006-11-03 Thread Benji Fisher
Dictionary? Of course, the old ones would have to be kept around for compatibility for a few releases ... HTH --Benji Fisher

Re: [PATCH] zip plugin: support any filename

2006-10-23 Thread Benji Fisher
--Benji Fisher

:diffsplit | verbose set fdm?

2006-10-13 Thread Benji Fisher
:verbose set fdm? foldmethod=manual --Benji Fisher

Re: Non-intuitive default behaviour of gI

2006-09-27 Thread Benji Fisher
with this distinction.) Thus g is used in vim for a wide variety of commands, with gchar usually meaning some variant of char. See :help g for a list. HTH --Benji Fisher

Re: Convert to HTML patch. Opinions / Testing.

2006-09-16 Thread Benji Fisher
On Fri, Sep 15, 2006 at 01:37:57PM +0100, Edd Barrett wrote: On 15/09/06, Benji Fisher [EMAIL PROTECTED] wrote: I think the decision of whether to include the p tags should be based on principles of logical mark-up: are these naturally paragraphs? This depends upon if you are writing

Re: Convert to HTML patch. Opinions / Testing.

2006-09-11 Thread Benji Fisher
for the contribution. HTH --Benji Fisher

Re: testing patchlevel from script

2006-09-11 Thread Benji Fisher
: variable. I agree that a List of patch numbers would be convenient. You can test for a specific patch with has(patch86). :help has-patch HTH --Benji Fisher

Re: matchparen tweak

2006-09-06 Thread Benji Fisher
On Wed, Sep 06, 2006 at 02:15:36AM +0200, A.J.Mechelynck wrote: Benji Fisher wrote: Now that the problem has been pointed out, I think the patch should be made in the official distribution. How about (simple but oh, so clever) let plist = split(matchpairs, '.\zs.') which

matchparen tweak (was: vim 7 errors)

2006-09-05 Thread Benji Fisher
with multibyte characters? Are these even allowed in 'matchpairs'? HTH --Benji Fisher P.S. cc'ed to vim-dev for further discussion

Re: Fixing cweb.vim

2006-09-02 Thread Benji Fisher
On Sat, Sep 02, 2006 at 01:36:06AM +0300, Ilya wrote: Benji Fisher wrote: On Fri, Sep 01, 2006 at 09:36:55AM +0300, Ilya wrote: David Brown wrote: [...] However, tex.vim frequently will enclose large sections of the document within a region and the cweb.vim which the webCRegion

Re: Fixing cweb.vim

2006-09-01 Thread Benji Fisher
synIDattr(synID(line(.), col(.), 1), name) IIUC, synIDattr() always returns a syn-match or syn-keyword group. It does not tell you whether you are in a syn-region. HTH --Benji Fisher

Re: better recognising of tex vs plaintex filetype

2006-08-30 Thread Benji Fisher
On Tue, Aug 29, 2006 at 09:16:41PM +0200, Stefano Zacchiroli wrote: On Tue, Aug 29, 2006 at 03:06:39PM -0400, Benji Fisher wrote: I do not think there is any reliable way to distinguish between plain TeX and LaTeX. After my RFC, I decided to treat plain TeX as the default, since

vim mailing lists

2006-08-30 Thread Benji Fisher
to the list because some server between my ISP and the vim-dev list is on its blacklist. Do you have any plans to move the vim mailing lists to a new server, where you (or someone more responsive) has administrative control? --Benji Fisher

Re: better recognising of tex vs plaintex filetype

2006-08-29 Thread Benji Fisher
more common now. I suggest adding let tex_flavor = latex to your vimrc file. HTH --Benji Fisher

Re: more on local additions in help.txt -- debian bug?

2006-08-17 Thread Benji Fisher
variables that control its behavior. HTH --Benji Fisher

Re: more on local additions in help.txt

2006-08-16 Thread Benji Fisher
files. It does not matter whether you have installed the help files with :helptags . Does this explain what you see? HTH --Benji Fisher

Re: [RFC] fixing f-args wrt '\\ ' handling

2006-08-14 Thread Benji Fisher
that. So if you want 'a\b', use 'a\\b' and if you want 'a\\b', then use 'ab'. $0.02 --Benji Fisher P.S. I cannot resist tweaking a vim function: command! -nargs=* XX :call Test(f-args) fun! Test(...) echo XX: .a:0. args( echo XX: a:0 args( Both :echo

Re: Invoke _gvimrc.vim / unexpected expansions

2006-08-14 Thread Benji Fisher
, then fixing the first problem will fix the second. HTH --Benji Fisher

Re: No way to color-region(s) of text -- highlighter mode.

2006-08-07 Thread Benji Fisher
Vim does a lot of optimization of regular expressions, but I do not know how it would perform in this case. I would just try it and see. If it does not work well, that would be a good reason to try :syn match instead of :match . HTH --Benji Fisher On Sun

Re: foldmethod=expr very slow

2006-07-26 Thread Benji Fisher
as a fold marker. Do you have 'foldmarker' set to the default value of {{{,}}} or something else? In my limited tests (try zc in Normal mode and see whether vim throws an error message) {0} is not recognized as a fold marker but {{{0}}} is. HTH --Benji Fisher

Re: Crazy wish: vimcat

2006-07-22 Thread Benji Fisher
are a separate buffer (like 'xterm', but not 'linux'). Maybe this is what you want: http://www.vim.org/tips/tip.php?tip_id=121 HTH --Benji Fisher

Re: VIM7 on Tandem OSS

2006-07-20 Thread Benji Fisher
multiple files, though. You can either concatenate the diff output or use cvs diff (if you happen to be using cvs). HTH --Benji Fisher

Re: question for charles (or anyone): netrw whacking t

2006-07-13 Thread Benji Fisher
On Wed, Jul 12, 2006 at 01:24:51PM -0400, Charles E Campbell Jr wrote: Benji Fisher wrote: I think I see the problem. In $VIMRUNTIME/autoload/netrw.vim , in the function netrw#DirBrowse() , there are the lines if fo =~ '[ta]' set fo-=t set fo-=a echohl Warning echo

Re: question for charles (or anyone): netrw whacking t

2006-07-11 Thread Benji Fisher
= ... :help local-options :help expr-option HTH --Benji Fisher

oddity with :noautocmd when editing a help file

2006-07-06 Thread Benji Fisher
? syntax? filetype=log syntax=log :noa e! autocmd.txt autocmd.txt [readonly] 1260L, 52535C :set ft? syntax? filetype=help syntax=log How did 'filetype' get set to help? --Benji Fisher

Re: vim7 repeats ';' and ',' not working for till 't' and 'T'

2006-06-28 Thread Benji Fisher
L, not number 1) will move you onto the x and the ; will take you to the characte before the next one. HTH --Benji Fisher

Re: Copying UTF-8 characters from Vim to Vim inside xterm

2006-06-24 Thread Benji Fisher
be more specific about how to reproduce the problem? Does it matter whether you are running vim in an xterm or some other terminal, or in gvim? I am running vim 7.0 (no patches yet) on Linux (Fedora Core 2). HTH --Benji Fisher

Re: matchparen bug?

2006-06-07 Thread Benji Fisher
--Benji Fisher

Re: matchparen bug?

2006-06-06 Thread Benji Fisher
On Mon, Jun 05, 2006 at 04:24:38PM +0300, Ilya wrote: Benji Fisher wrote: I can reproduce it. Perhaps we just need more explicit instructions on how to reproduce it. Using the text above, go to the g:loaded_autoit_completion line and (starting in Normal mode) type $iDownDown

Re: matchparen bug?

2006-06-06 Thread Benji Fisher
On Tue, Jun 06, 2006 at 05:11:13PM +0300, Ilya wrote: Benji Fisher wrote: Perhaps you have set 'matchpairs' so that it does not include [:]? matchpairs does include [:] - as by default. And brackets are highlighted when cursor is near one of them. Since you snipped the three sample

Re: Regression in gvim 7.0.00x

2006-05-25 Thread Benji Fisher
the following note in doc/version7.txt : --- fixes and changes since Vim 7.0f --- [...] Prevent that using CTRL-R = in Insert mode can start Visual mode. HTH --Benji Fisher

Re: Regression in gvim 7.0.00x

2006-05-25 Thread Benji Fisher
On Thu, May 25, 2006 at 03:17:54PM +0200, Luc Hermitte wrote: * On Thu, May 25, 2006 at 08:30:52AM -0400, Benji Fisher [EMAIL PROTECTED] wrote: I see the following note in doc/version7.txt : --- fixes and changes since Vim 7.0f --- [...] Prevent that using CTRL-R = in Insert

Re: Pattern questions

2006-05-24 Thread Benji Fisher
=~ '\m[;|?:[EMAIL PROTECTED]*(){}\\_+-[\]/\]+' :echo char =~ '\m[;|?:[EMAIL PROTECTED]*(){}\\_+-[\]/\]\+' and neither generated an error. HTH --Benji Fisher

Re: please unsubscribe me

2006-05-24 Thread Benji Fisher
is on Bram's TODO list when he gets back from vacation. Until then, I do not think there is anyone who can help. I have not tested myself, but judging from your post and others, the mail admin is MIA. :-( --Benji Fisher

Re: vim7: problem with regex subst and combining chars

2006-05-18 Thread Benji Fisher
? --Benji Fisher

Re: FW: [Vimoutliner] I have a windows installation issue.

2006-05-17 Thread Benji Fisher
is reproducible, please give details. HTH --Benji Fisher On Wed, May 17, 2006 at 02:27:38PM +0200, Zdenek Sekera wrote: From another mailing list. Is there a problem using tabs on the same file? ---Zdenek -Original Message- From: [EMAIL PROTECTED

Re: :cw messes with C-W_ C-W=

2006-05-16 Thread Benji Fisher
this. --Benji Fisher

Re: [vim7] a strange behavior of completeopt

2006-05-16 Thread Benji Fisher
explanation is welcomed! Best regards, Vincent I can confirm this. It looks like a bug to me. I have run into similar problems before, but have not figured out how to reproduce them. Thanks for the reproducible example. HTH --Benji Fisher

Re: formatexpr, append() and undo

2006-05-16 Thread Benji Fisher
--Benji Fisher == == set nocp tw=20 set laststatus=2 so I can watch the 'modified' flag setlocal formatoptions=tcqr setlocal formatexpr=MyTeXFormat(v:lnum,v:count) fun! MyTeXFormat(lnum,count

Re: situation in which n doesn't switch 'hls' on after 'h' in viminfo disabled 'hls'

2006-05-15 Thread Benji Fisher
On Mon, May 15, 2006 at 12:07:55AM +0300, Yakov Lerner wrote: On 5/14/06, Benji Fisher [EMAIL PROTECTED] wrote: I have not tried it inside a function, but :set hls seems to undo the effect of :nohls so perhaps a work-around is to add :if hls | set hls | endif either

Re: gvim7 filename tab completion insert CTRL-I

2006-05-12 Thread Benji Fisher
--Benji Fisher

Re: Strange behavior with text wrapping / reflowing

2006-05-10 Thread Benji Fisher
--Benji Fisher

Re: More ^P/^N weirdness

2006-05-09 Thread Benji Fisher
was highlighted, or neither. Two of these options have the same text, numMa, in the buffer. HTH --Benji Fisher P.S. There have been times when hitting C-N removed characters that I had typed, and I had to re-type them. I have not been able to figure out how

Re: exists(*Foo!garbage) = 1 ?

2006-05-01 Thread Benji Fisher
willing to check them. I bet there are very few. HTH --Benji Fisher

Re: RFC: (x)html completion support in Vim7

2006-04-24 Thread Benji Fisher
for new files. HTH --Benji Fisher

Re: Mappings fail me, yet again

2006-04-24 Thread Benji Fisher
functions) then you do not have to hit CR after entering your motion. It is not entirely smooth, and adding silent does not help much, but please tinker. HTH --Benji Fisher fun! Dummy(mode) endfun fun! Gat() call inputsave() silent let mtn = GetMotion

Re: Possible utf-8 bug

2006-04-18 Thread Benji Fisher
. I have no idea why it would fail for you... There was a problem like this, specifically with encoding=utf8, but it was fixed several versions ago. Srinath, can you post your full :version output? HTH --Benji Fisher

:!gvim does not work

2006-04-13 Thread Benji Fisher
. --Benji Fisher

Re: :!gvim does not work

2006-04-13 Thread Benji Fisher
On Thu, Apr 13, 2006 at 09:16:17AM -0700, Yegappan Lakshmanan wrote: Hi Bram, On 4/13/06, Bram Moolenaar [EMAIL PROTECTED] wrote: Benji Fisher wrote: I just tried :!gvim and all I got was Vim: Caught deadly signal SEGV Vim: Finished. Command terminated