Re: Syncronizing breakpoints with ipython

2009-11-02 Thread Nathan Huesken
On Sun, Nov 01, 2009 at 03:13:52PM -0800, Reckoner wrote: these might interest you: http://advice.mechanicalkern.com/question/3/how-can-i-integrate-vim-with-ipython http://petro.tanrei.ca/2009/10/5/working-with-vim-and-ipython

jump to word under cursor: in another window?

2009-11-02 Thread fka...@googlemail.com
Hi, with CTRL-* one can search and jump to the next occurrence of what is under the cursor. When I have two windows (in my case often of the same buffer) can I do the same but let the execution happen in the other window? With other words: In the current window the cursor's position shall be

Re: jump to word under cursor: in another window?

2009-11-02 Thread fka...@googlemail.com
fka...@googlemail.com wrote: with CTRL-* one can search and jump to the next occurrence of what is Little correction: I meant * (not CTRL-*) Felix --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information, visit

gqip is nondeterministic at times: how to reproduce

2009-11-02 Thread Raúl Núñez de Arenas Coronado
Hi all :) Some months ago I described here a problem I was having using gqip. This is the thread: http://groups.google.com/group/vim_use/browse_thread/thread/7465b6b2599ed11f/7a013084a8a1022d?hl=enlnk=gstq=gqip#7a013084a8a1022d The thing is that now I know how to reproduce the problem, I've

Re: gqip is nondeterministic at times: how to reproduce

2009-11-02 Thread Raúl Núñez de Arenas Coronado
Saluton, again :) Raúl Núñez de Arenas Coronado r...@gmail.com skribis: Some months ago I described here a problem I was having using gqip. This is the thread: http://groups.google.com/group/vim_use/browse_thread/thread/7465b6b2599ed11f/7a013084a8a1022d?hl=enlnk=gstq=gqip#7a013084a8a1022d

Re: jump to word under cursor: in another window?

2009-11-02 Thread Andy Wokula
fka...@googlemail.com schrieb: Hi, with CTRL-* one can search and jump to the next occurrence of what is under the cursor. When I have two windows (in my case often of the same buffer) can I do the same but let the execution happen in the other window? With other words: In the current

ANN: Txtfmt (The Vim Highlighter) - Version 2.0 - Rich text capability in Vim!

2009-11-02 Thread Stahlman Family
Overview If you like to edit plain text documents in Vim, but sometimes miss a word processor's ability to highlight specific regions of text with colors and format attributes (bold, underline, italic, etc...), the Txtfmt plugin is for you...

Re: (changed subject) Rainbow.vim

2009-11-02 Thread Charles Campbell
Chris Sutcliffe wrote: I've made some considerable changes to the rainbow plugin; the :Rainbow command now supports setting any combination of {}[]() for highlighting: :Rainbow { :Rainbow {[ etc. Note that []s are supported. Meino -- you'll need to remove your renamed

writing a Dictornary with a getqflist-like function

2009-11-02 Thread Nathan Huesken
Hi, As one can see in a previous post, I am trying to display ipython breakpoints in gvim. I found this: http://www.vim.org/scripts/script.php?script_id=2584 Apparently is can display marks from various lists. For this, it needs a vim script expression as string that returns a list compatible

Re: jump to word under cursor: in another window?

2009-11-02 Thread fka...@googlemail.com
Excellent! Thanks a lot! Sidenote: Since I decided to use the basic mode but wanted to have the feature to jump to other occurrences, I've modified the basic version a bit to jump into the other window in case the word was found (see below). It is completely o.k. for me to do CTRL_W p to go back

Re: jump to word under cursor: in another window?

2009-11-02 Thread Andy Wokula
fka...@googlemail.com schrieb: Sidenote: Since I decided to use the basic mode but wanted to have the feature to jump to other occurrences, I've modified the basic version a bit to jump into the other window in case the word was found (see below). It is completely o.k. for me to do CTRL_W p

character \n in SendKeys() parameter

2009-11-02 Thread anna
Hi all, Is there a way to send a command containing a string \n via SendKeys () function through OLE. For example sending this following command. :let var=abc\ndef Whenever I send a string containing character \n. Only string before the character \n will be executed. So, here this command

Re: Vim Wiki problem?

2009-11-02 Thread bill lam
Until kindly reminded by a forum member just now, I failed to notice I sent reply to both vim_use mailing lists by hitting reply to list. I have my mua config updated. Sorry for any inconvenience caused. -- regards, GPG key 1024D/4434BAB3

Re: gqip is nondeterministic at times: how to reproduce

2009-11-02 Thread Bram Moolenaar
Raul Coronado wrote: Hi all :) Some months ago I described here a problem I was having using gqip. This is the thread: http://groups.google.com/group/vim_use/browse_thread/thread/7465b6b2599ed11f/7a013084a8a1022d?hl=enlnk=gstq=gqip#7a013084a8a1022d The thing is that now I know how to

Re: gqip is nondeterministic at times: how to reproduce

2009-11-02 Thread Raúl Núñez de Arenas Coronado
Saluton Bram :) Bram Moolenaar b...@moolenaar.net skribis: Raul Coronado wrote: Some months ago I described here a problem I was having using gqip. This is the thread:

On-the-fly code checking in VIM

2009-11-02 Thread Martin Kopta
Hi, I wrote a blogpost about Codecheck (on-the-fly code checking): http://dum8d0g.blogspot.com/2009/11/on-fly-code-checking-in-vim.html --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information, visit

Re: On-the-fly code checking in VIM

2009-11-02 Thread Marc Weber
Excerpts from Martin Kopta's message of Tue Nov 03 00:32:50 +0100 2009: Hi, I wrote a blogpost about Codecheck (on-the-fly code checking): http://dum8d0g.blogspot.com/2009/11/on-fly-code-checking-in-vim.html I tried adding a comment but I could'nt login. Codecheck is nice idea and it is

Re: Resize To Cursor

2009-11-02 Thread Tony Mechelynck
On 06/10/09 13:43, Stahlman Family wrote: Paul wrote: On Mon, 5 Oct 2009, Brett Stahlman wrote: nnoremapF8 :exe resize . (line('.') - line('w0') + 1)CR\|zb Yes, you have the idea. That works for horizontal split. Now, how about for vertical split? I don't see a column() function...

how to find relationship of function in C code using vim

2009-11-02 Thread frank wang
Hi, I used vim for long time and recently I found a usefule software called source insight. It has one feature it is very useful. That is the relation window. If you have a function name, you can click it and select relation window, it will show which function calls it. It is a nice for large

Re: how to find relationship of function in C code using vim

2009-11-02 Thread winterTTr
On Tue, Nov 3, 2009 at 2:06 PM, frank wang yixiaodaf...@gmail.com wrote: Hi, I used vim for long time and recently I found a usefule software called source insight. It has one feature it is very useful. That is the relation window. If you have a function name, you can click it and select

Re: Manage Vim scripts

2009-11-02 Thread Tony Mechelynck
On 07/10/09 17:21, Charles E Campbell Jr wrote: Peter l Jakobi wrote: [snip] isn't there also some script on vim.org to watch for updates to one's installed scripts? maybe clone or interface with it / talk to it's author. [snip] Perhaps you're talking about GetLatestVimScripts?