Re: highlight all words matching the word under the cursor

2011-05-31 Thread Adam Duck
On 29.05.2011 11:31, Reuven Sayag wrote: Hi, I'm looking for a way to highlight words that match the word under the cursor. I tried to put in my vimrc the following: :autocmd CursorMoved *.cc,*.h,*.java exe printf('match IncSearch /\%s \/', expand('cword')) This works but it's a bit slow, and I

windows resize, insert mode

2010-10-19 Thread Adam Duck
Hello vimmers!/ /I have a strange behaviour of some sort: after resizing a vim-window inside vim with the mouse, somehow I land in insert mode. Which is especially annoying when the cursor is in a non-modifiable buffer/. /':map' doesn't help: I unmapped every mapping with LeftMouse in them,

Re: Windows version with Python, Ruby and Lua support?

2010-08-23 Thread Adam Duck
On 23.08.2010 13:19, Didlybom wrote: Hi, this is my first post on this list so first I'd like to thank all the Vim contributors for your work on this awesome piece of software that is VIM. That being said, I have a question regarding python, ruby and lua support (or lack thereof) on the

Re: [SOLVE] Re: Some ideas , possible with vim ?

2010-07-26 Thread Adam Duck
Am 24.07.2010 um 15:30 schrieb Aaron Lewis aaron.lewis1...@gmail.com: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/24/2010 09:25 PM, Tony Mechelynck wrote: You could either use :e # to come back to the previous file, or use CTRL-W f instead of gf (opening the include file in a

Re: Mix TagList's tags with your own tags

2010-07-20 Thread Adam Duck
On 20.07.2010 02:16, Pablo Giménez wrote: 2010/7/19 Brett Stahlmanbrettstahl...@comcast.net: On Jul 19, 6:49 am, Pablo Giménezpablog...@gmail.com wrote: Hi. I am using the TagList plugin and I have seen that TagList use different tags than VIM, I mean vim can see the tags in the

Re: Mix TagList's tags with your own tags

2010-07-20 Thread Adam Duck
On 20.07.2010 12:25, Pablo Giménez wrote: 2010/7/20 Adam Duckadam.ian.d...@gmail.com: On 20.07.2010 02:16, Pablo Giménez wrote: 2010/7/19 Brett Stahlmanbrettstahl...@comcast.net: On Jul 19, 6:49 am, Pablo Giménezpablog...@gmail.comwrote: Hi. I am using the

Re: ANN: OutlookVim - version 4.0

2010-06-21 Thread Adam Duck
On 04.06.2010 14:46, David Fishburn wrote: OutlookVim is a plugin for Microsoft Windows Outlook users. It simply adds a button in Outlook which will spawn Vim, allow you to edit the body of the currently open email and when you :w, it will update Outlook with the results. There are more

Re: When Vim 7.3 will be released

2010-03-09 Thread Adam Duck
On 09.03.2010 08:44, Tom Link wrote: I think proceeding slowly would be a good idea. One argument pro intermittent releases is though that it would make it easier for windows users to use current versions of ruby/python/... in conjunction with vim without having to compile vim. I'd vote

Re: Fold according to keyword before fold mark?

2010-03-01 Thread Adam Duck
On 01.03.2010 16:29, fka...@googlemail.com wrote: Have you checked vimoutliner? http://www.vimoutliner.org/ Very impressive -- it folds/unfolds to a given fold depth, however, the main aspect I am looking for is not covered by VimOutliner. I look for a way to fold/unfold ALL folds

Re: Fold according to keyword before fold mark?

2010-03-01 Thread Adam Duck
On 01.03.2010 16:29, fka...@googlemail.com wrote: Have you checked vimoutliner? http://www.vimoutliner.org/ Very impressive -- it folds/unfolds to a given fold depth, however, the main aspect I am looking for is not covered by VimOutliner. I look for a way to fold/unfold ALL folds belonging

Re: Always highlight current word

2009-07-03 Thread Adam Duck
On 02.07.2009 19:23, Vincent Arnoux wrote: On Thu, Jul 2, 2009 at 18:57, Tim Chasev...@tim.thechases.com wrote: Though I think it would annoy the bajeebers out of me, you can do it with something like: :au CursorHold * exec 'match IncSearch /'.expand(cword).'/' You might want to