jobs : building making while using vim

2016-10-14 Thread Ni Va
Hi, I am using jobs to execute some tasks while I am using Vim 8 to edit some files. I also use historical make command from within Vim to build some code and would like to delegate it to a job. Is it possible to redefined it ? My Last :make command says that : !mingw32-make

Re: Weird behaviour with the 'gN' command

2016-10-14 Thread Osman Koçak
Hi, any update regarding this issue ? ++ Osman 2016-10-09 23:25 GMT+02:00 Osman Koçak : > Hmmm, I see... > However, I think it should be possible to fix it since the forward search > ('/') don't mess up in such cases. > I also have a "workaround" (in Vimscript) that

Re: Trying to download spellchecking file and getting error "Sorry, download failed"

2016-10-14 Thread Igor Forca
Typo... instead of: C:\Users\[user]\spell\sl.cp1250.spl should be: C:\Users\[user]\vimfiles\spell\sl.cp1250.spl -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: Trying to download spellchecking file and getting error "Sorry, download failed"

2016-10-14 Thread Igor Forca
I have solved the problem. Vim spellcheckers are saved at: http://ftp.vim.org/vim/runtime/spell/ For my need Windows-1250 code page I needed to download: http://ftp.vim.org/vim/runtime/spell/sl.cp1250.spl Then there are two options: a) system wide for all users b) per particular user Ad a)

Re: How to omit the "3 substitions on 330 lines" from being displayed in Vim status bar after substition or global command is executed?

2016-10-14 Thread A. S. Budden
On 14 October 2016 at 13:43, Igor Forca wrote: > Hi, > I have a text file with a lot of Vim substitution and global commands like: > :%s/\(one\) \(two\)/\1\r\2/gie > :g/(something\c/normal v%2> > and several more commands in file named myfile.vim. > > Then in the current buffer

How to omit the "3 substitions on 330 lines" from being displayed in Vim status bar after substition or global command is executed?

2016-10-14 Thread Igor Forca
Hi, I have a text file with a lot of Vim substitution and global commands like: :%s/\(one\) \(two\)/\1\r\2/gie :g/(something\c/normal v%2> and several more commands in file named myfile.vim. Then in the current buffer when I need to execute this kind of find/replace substitution I just execute:

Re: Repeated symbols with Cscope

2016-10-14 Thread Erik Falor
On Fri, Oct 14, 2016 at 07:56:53AM -0700, Hugo Gagnon wrote: > Hi Erik, > > Thank you for your reply. > > My problem is now seemingly gone. Even more strange is that I can't reproduce > it; all I did was to reboot my machine and build another Cscope database. Those are the very best sort of

Re: Repeated symbols with Cscope

2016-10-14 Thread Hugo Gagnon
On Friday, October 14, 2016 at 4:57:20 PM UTC+2, Christian Brabandt wrote: > On Do, 13 Okt 2016, Hugo Gagnon wrote: > > > Hello, > > > > For some reason when I do a symbol search with Cscope in Vim I get repeated > > symbols, e.g.: > > > > :cs find s setID > > e.H|188| <> void setID (int ID) {

RE: Different colors on -t vs :ta

2016-10-14 Thread Saurabh T
> > Saurabh wrote: > > > If there are multiple matches to a tag, vim shows a menu where "# pri > > kind tag file" are printed. > > > > If I do vim -t tag, the colors of the above menu title and the tag are > > magenta/purple while the filename is in dark blue. Since my background > > is a dark

Re: Repeated symbols with Cscope

2016-10-14 Thread Hugo Gagnon
On Friday, October 14, 2016 at 4:39:18 PM UTC+2, ewfalor wrote: > On Thu, Oct 13, 2016 at 10:03:29AM -0700, Hugo Gagnon wrote: > > Hello, > > > > For some reason when I do a symbol search with Cscope in Vim I get repeated > > symbols, e.g.: > > > > :cs find s setID > > e.H|188| <> void setID

Re: Repeated symbols with Cscope

2016-10-14 Thread Christian Brabandt
On Do, 13 Okt 2016, Hugo Gagnon wrote: > Hello, > > For some reason when I do a symbol search with Cscope in Vim I get repeated > symbols, e.g.: > > :cs find s setID > e.H|188| <> void setID (int ID) { _ID = ID; } > e.H|188| <> void setID (int ID) { _ID = ID; } > e.H|188| <> void setID (int

Re: Repeated symbols with Cscope

2016-10-14 Thread Erik Falor
On Thu, Oct 13, 2016 at 10:03:29AM -0700, Hugo Gagnon wrote: > Hello, > > For some reason when I do a symbol search with Cscope in Vim I get repeated > symbols, e.g.: > > :cs find s setID > e.H|188| <> void setID (int ID) { _ID = ID; } > e.H|188| <> void setID (int ID) { _ID = ID; } > e.H|188|

Re: Repeated symbols with Cscope

2016-10-14 Thread arocker
> > No it doesn't, at least not until it started working again. Unfortunately > I forgot to test that before rebooting my machine... > Is this a Heisenbug (disappears when you search for it) or a Schrodingerbug, (appears at random when the box is opened)? :-)* -- -- You received this message

Re: Inconsistent behavior at end of .vim script

2016-10-14 Thread porphyry5
On Thursday, October 13, 2016 at 10:38:34 AM UTC-7, Frank Shute wrote: > Hi Graham, > > What you might want to do is use echom rather than plain echo. > > The former sticks it's output into the message buffer and you can then > read it with: > > :mes > > HTH. > snip > > Frank Thank you