Progressive quickfix buffer / background compilations

2006-09-29 Thread Gregory McIntyre
I am trying to set up gvim 7 on Linux to function the way emacs does when you compile a program (M-x compile). That is, I would like: - the window to split, creating a compilation buffer (like :copen / :cwin) - vim to execute the compilation in a sub-process - vim to not bother me with a

Re: The meaning of nothing... ?

2006-09-29 Thread Yakov Lerner
On 9/29/06, Meino Christian Cramer [EMAIL PROTECTED] wrote: Hi, to get all the keys of my keyboard working with vim I looked through my ~/.vimrc and found a setting (nottybuiltin), which I do revert and now a few addtional keys (C-F1 for example) do work correctly. So it seems, that the

Re: splitting $HOME/.vimrc

2006-09-29 Thread moonykily
you can run normal commands with :normal for example, :normal dd will delete a whole line On Friday 29 September 2006 11:22, Meino Christian Cramer wrote: From: A.J.Mechelynck [EMAIL PROTECTED] Subject: Re: splitting $HOME/.vimrc Date: Fri, 29 Sep 2006 05:04:30 +0200 Meino Christian Cramer

Re: When I open foo.zcml I would like xml type syntax

2006-09-29 Thread Marc Weber
On Fri, Sep 29, 2006 at 10:35:04AM +0200, KLEIN St?phane wrote: Hi, How can I configure vim to use XML syntax when I open *.zcml file ? See :h autocmd put this into a a file which is sourced on startup (eg .vimrc or a plugin-file) autocmd BufRead,BufNewFile *.zcml :set ft=xml Marc

Re: Progressive quickfix buffer / background compilations

2006-09-29 Thread Marc Weber
Have a look at http://www.vim.org/scripts/script.php?script_id=1582 It's writne by me, (I don't know any perl so tried achieving the same using python) I saw you've already found the script by Luc, (link to his work is on the page, too) It's not perfect.. but much better (You'll see the

Using vimserver with multiple clearcase views

2006-09-29 Thread Mishra, Vikas
Hello Folks, I want to be able to use multiple clearcase views with vim (with vim in the vimserver model). Does any one have any suggestions to work with these ? The issue that I am finding is that I start a vimserver outside a clearcase view - Then I try to invoke vim by using the following

linebreak does not work with list

2006-09-29 Thread Steve Hall
:help linebreak documents that it is not used when...'list' is on but this means that toggling list shifts the text. I noticed this is on the ToDo: 7 Make 'list' and 'linebreak' work together. Is this a difficult fix? -- Steve Hall [ digitect dancingpaper com ]

Unicode chars NEL, FF, LS, PS

2006-09-29 Thread Steve Hall
Does anyone here know if Vim respects the following Unicode characters (represents them rather than just indicating literals): http://en.wikipedia.org/wiki/Newline#Unicode I'm not on a Unicode platform at the moment, but I'm wondering if Vim could ever have the listchars to do it like mined:

Autmagically adding new lines when text gets too long

2006-09-29 Thread Jeremy Conlin
I have set textwidth=80 and would like Vim to automatically break a line (between words) when the line gets too big. However, this isn't working, Vim doesn't seem to be doing anything different. Is there some other option I need to set? Thanks, Jeremy

Re: Autmagically adding new lines when text gets too long

2006-09-29 Thread Georg Dahn
Hi! --- Jeremy Conlin [EMAIL PROTECTED] wrote: I have set textwidth=80 and would like Vim to automatically break a line (between words) when the line gets too big. However, this isn't working, Vim doesn't seem to be doing anything different. Is there some other option I need to set? Just

Re: Re: Autmagically adding new lines when text gets too long

2006-09-29 Thread Georg Dahn
Hi! --- Jeremy Conlin [EMAIL PROTECTED] wrote: No, linebreak just *displays* a broken line, I want a *real* broken line. I want Vim to insert EOLs for me. I thought that is what textwidth would do. Of course, you still have to set 'textwidth', too. :set textwidth=80 :set linebreak will

Re: Re: Re: Autmagically adding new lines when text gets too long

2006-09-29 Thread Jeremy Conlin
On 9/29/06, Georg Dahn [EMAIL PROTECTED] wrote: Hi! --- Jeremy Conlin [EMAIL PROTECTED] wrote: No, linebreak just *displays* a broken line, I want a *real* broken line. I want Vim to insert EOLs for me. I thought that is what textwidth would do. Of course, you still have to set

Re: Using vimserver with multiple clearcase views

2006-09-29 Thread Yakov Lerner
On 9/29/06, Mishra, Vikas [EMAIL PROTECTED] wrote: Hello Folks, I want to be able to use multiple clearcase views with vim (with vim in the vimserver model). Does any one have any suggestions to work with these ? The issue that I am finding is that I start a vimserver outside a clearcase view

Re: linebreak does not work with list

2006-09-29 Thread Yakov Lerner
On 9/29/06, Steve Hall [EMAIL PROTECTED] wrote: :help linebreak documents that it is not used when...'list' is on but this means that toggling list shifts the text. I noticed this is on the ToDo: 7 Make 'list' and 'linebreak' work together. Is this a difficult fix? There must have been

vim + cscope + nuweb

2006-09-29 Thread Jim Washburn
Hi, A question about this combination - I use cscope with vim, normally with C/C++. I have lately been using the literate programming tool 'nuweb' , somewhat similar to CWEB, based on Latex. The nuweb source files I have written have C/C++ code within them. I have a problem referencing

Re: linebreak does not work with list

2006-09-29 Thread Yakov Lerner
On 9/29/06, Steve Hall [EMAIL PROTECTED] wrote From: Yakov Lerner, Fri, September 29, 2006 2:24 pm There must have been reason for this (linebreak ... is not used when...'list' is on). Is it because with list on, representation of tabs can be different/incorrect from correct

Re: Move cursor in insert mode without breaking history?

2006-09-29 Thread Karl Guertin
On 9/28/06, Karl Guertin [EMAIL PROTECTED] wrote: I'm trying to get vim to auto-close parenthesis and set it up so that the closing paren jumps past the end of the inserted one. This mapping does the trick A followup. I do have this working inoremap ()C-R=NoUndoMove(-1)CR inoremap )

Re: linebreak does not work with list

2006-09-29 Thread Yakov Lerner
On 9/29/06, Steve Hall [EMAIL PROTECTED] wrote: From: Yakov Lerner, Fri, September 29, 2006 3:43 pm On 9/29/06, Steve Hall wrote From: Yakov Lerner, Fri, September 29, 2006 2:24 pm There must have been reason for this (linebreak ... is not used when...'list' is on). Is it

Re: The meaning of nothing... ?

2006-09-29 Thread A.J.Mechelynck
Yakov Lerner wrote: On 9/29/06, Meino Christian Cramer [EMAIL PROTECTED] wrote: Hi, to get all the keys of my keyboard working with vim I looked through my ~/.vimrc and found a setting (nottybuiltin), which I do revert and now a few addtional keys (C-F1 for example) do work correctly. So

Re: linebreak does not work with list

2006-09-29 Thread A.J.Mechelynck
Steve Hall wrote: :help linebreak documents that it is not used when...'list' is on but this means that toggling list shifts the text. I noticed this is on the ToDo: 7 Make 'list' and 'linebreak' work together. Is this a difficult fix? With 'list', tabs can be represented as ^I (if

Re: Autmagically adding new lines when text gets too long

2006-09-29 Thread A.J.Mechelynck
Jeremy Conlin wrote: I have set textwidth=80 and would like Vim to automatically break a line (between words) when the line gets too big. However, this isn't working, Vim doesn't seem to be doing anything different. Is there some other option I need to set? Thanks, Jeremy With 'textwidth'

Re: Unicode chars NEL, FF, LS, PS

2006-09-29 Thread A.J.Mechelynck
Steve Hall wrote: Does anyone here know if Vim respects the following Unicode characters (represents them rather than just indicating literals): http://en.wikipedia.org/wiki/Newline#Unicode I'm not on a Unicode platform at the moment, but I'm wondering if Vim could ever have the listchars to

Re: linebreak does not work with list

2006-09-29 Thread Steve Hall
On Fri, 2006-09-29 at 23:36 +0200, A.J.Mechelynck wrote: Steve Hall wrote: :help linebreak documents that it is not used when...'list' is on but this means that toggling list shifts the text. I noticed this is on the ToDo: 7 Make 'list' and 'linebreak' work together. Is this a

Re: taglist() bugs related to 'tags'

2006-09-29 Thread Hari Krishna Dara
On Wed, 27 Sep 2006 at 9:53pm, Bram Moolenaar wrote: Hari Krishna Dara wrote: I am observing that the taglist() function is not sensitive to the changes in 'tags' value. It also seems to cache the value of 'tags' as of the time the function is called for the first time. To

Re: Unicode chars NEL, FF, LS, PS

2006-09-29 Thread Steve Hall
On Sat, 2006-09-30 at 01:14 +0200, A.J.Mechelynck wrote: Steve Hall wrote: Does anyone here know if Vim respects the following Unicode characters (represents them rather than just indicating literals): http://en.wikipedia.org/wiki/Newline#Unicode I'm not on a Unicode platform at the

Re: Unicode chars NEL, FF, LS, PS

2006-09-29 Thread A.J.Mechelynck
Steve Hall wrote: [...] It would be a lot to ask of any text editor to respect these new Unicode formatting characters. But I do think the authors of the spec intended these to be additions to the traditional CR and LF. I've been involved in a why can't Vim do X, editor Y can do it discussion,

Re: The meaning of nothing... ?

2006-09-29 Thread Meino Christian Cramer
From: A.J.Mechelynck [EMAIL PROTECTED] Subject: Re: The meaning of nothing... ? Date: Fri, 29 Sep 2006 22:58:28 +0200 Yakov Lerner wrote: On 9/29/06, Meino Christian Cramer [EMAIL PROTECTED] wrote: Hi, to get all the keys of my keyboard working with vim I looked through my ~/.vimrc

Re: The meaning of nothing... ?

2006-09-29 Thread A.J.Mechelynck
Meino Christian Cramer wrote: [...] Hi Tony, hi Yakov! I looked throught the term/terminfo/termcap/xterm/rxvt/* stuff and have more questions than answers now. Do you know a document or HowTo or something linke that which will give me more closer informations about the term* handling in

taglist

2006-09-29 Thread Vu The Cuong
Thanks, Yegappan Lakshmanan Finally taglist worked. I reinstalled it from ports with version 5.6 Then in .vimrc, I put let Tlist_Ctags_Cmd='/usr/local/bin/exctags' THanks taglist plugin problem in freebsd 6.1 From: Vu The Cuong cuongvt at fsoft.com.vn Subject: taglist plugin problem in freebsd

RE: Using vimserver with multiple clearcase views

2006-09-29 Thread Mishra, Vikas
Hello Yakov, On 9/29/2006 11:33:42 PM Yakov Lerner wrote: When you define new clearcase view, it starts new subshell and only process which are children of this subshell see the files belonging to the view, thanks to the clearcase kernel magic. I knew that already. But was hoping that

Re: vim + cscope + nuweb

2006-09-29 Thread Jim Washburn
[EMAIL PROTECTED] wrote: Jim Washburn [EMAIL PROTECTED] 写于 2006-09-30 02:58:59: Hi, A question about this combination - I use cscope with vim, normally with C/C++. I have lately been using the literate programming tool 'nuweb' , somewhat similar to CWEB, based on Latex. The nuweb source

Re: no winclose event

2006-09-29 Thread Hari Krishna Dara
On Wed, 27 Sep 2006 at 10:07am, Charles E Campbell Jr wrote: Bram Moolenaar wrote: Charles Campbell wrote: Just a suggestion -- I'd appreciate a WinClose event. BufWinLeave would almost do, but if two or more windows are open on the same buffer, then no event. WinLeave fires

Re: About Unicode CJK Unified Extension B

2006-09-29 Thread A.J.Mechelynck
Christian MICHON wrote: On 3/6/06, Bram Moolenaar [EMAIL PROTECTED] wrote: GTK2 does everything with UTF-8, thus it should work as it is. I know this is a bit late, but I tried today to make a custom gtk2 gvim build without multibyte, and I apparently cannot unless I change heavily the code

Re: 'at' tag selection and xxx/ tags

2006-09-29 Thread A.J.Mechelynck
Eric Van Dewoestine wrote: Is there a particular reason why xxx/ tags are skipped when using at (:h at)? The tag-blocks documentation notes that this is by design but offers no reasoning behind it. For html where the only self closing tags are usually p/ or br/, I could see how this behavior