Re: gundo not working

2016-09-18 Thread Steve
Le 18-09-2016, à 12:36:24 -0700, Ben Fritz a écrit : By default Vim does NOT load plugins from the ~/.vim/bundle directory. Do you have a plugin such as Pathogen installed and configured to do that for you? No. If you're using a recent version of vim (8.0 or one of the earlier patches

Re: turn all highlighting off at startup

2016-09-18 Thread jleiss
Syntax off did it, Ben. Thanks! -- -- 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 http://www.vim.org/maillist.php --- You received this message because you are subscribed to the

Re: turn all highlighting off at startup

2016-09-18 Thread Ben Fritz
On Sunday, September 18, 2016 at 2:34:28 PM UTC-5, jle...@nc.rr.com wrote: > What am I doing wrong? I thought I knew how to do this. When it didn't > work, I studied the help manual, but I guess I'm still doing something wrong. > I'm using Vim 8.0.2. I put set syntax=off in the _vimrc file,

Re: using cscope with tabs

2016-09-18 Thread Ben Fritz
On Sunday, September 18, 2016 at 2:39:33 AM UTC-5, roy rosen wrote: > Hi all, > > I am using cscope with vim and have the following mapping in my .vimrc: > > nmap s :tab cs find s =expand("") > > this works fine except for the fact that it is opening a new tab every > time I use it. >

Re: gundo not working

2016-09-18 Thread Ben Fritz
On Sunday, September 18, 2016 at 6:42:55 AM UTC-5, Steve wrote: > Hi there ! > > I installed gundo with: > > git clone http://github.com/sjl/gundo.vim.git ~/.vim/bundle/gundo > > Then insereted > > nnoremap u :gUndoToggle > > saved, closed the file and edited a new one. After a while, I tried

turn all highlighting off at startup

2016-09-18 Thread jleiss
What am I doing wrong? I thought I knew how to do this. When it didn't work, I studied the help manual, but I guess I'm still doing something wrong. I'm using Vim 8.0.2. I put set syntax=off in the _vimrc file, and it didn't work. Nothing else I tried worked. I want to turn all

syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-18 Thread Brett Stahlman
The syntax documentation suggests that the 'keepend' argument applies only to syntax regions, not syntax matches. But if I highlight a buffer containing only the following line... ABCDE ...with the following syntax definitions... syn match A /A/ syn match Inside /[A-Z]\+/ transparent contained

Re: norm 1G does not work on vim8.0.4

2016-09-18 Thread Ni Va
On Sunday, September 18, 2016 at 1:21:53 PM UTC+2, Tim Chase wrote: > On 2016-09-18 02:55, Ni Va wrote: > > > And stepping back, if you're writing *either* "norm 1G" or "norm! > > > 1G" just write > > > > > > 1 > > > > > > or whichever line-number you want to go to. Likewise, just use > > >

gundo not working

2016-09-18 Thread Steve
Hi there ! I installed gundo with: git clone http://github.com/sjl/gundo.vim.git ~/.vim/bundle/gundo Then insereted nnoremap u :gUndoToggle saved, closed the file and edited a new one. After a while, I tried to use gundo by issuing ,u, but nothing happened. I'm working on a Debian Jessie

Re: norm 1G does not work on vim8.0.4

2016-09-18 Thread Tim Chase
On 2016-09-18 02:55, Ni Va wrote: > > And stepping back, if you're writing *either* "norm 1G" or "norm! > > 1G" just write > > > > 1 > > > > or whichever line-number you want to go to. Likewise, just use > > "$" rather than "norm G" or "norm! g" > > > > :help range > > > > -tim > >

Re: norm 1G does not work on vim8.0.4

2016-09-18 Thread Ni Va
On Sunday, September 18, 2016 at 3:54:10 AM UTC+2, Tim Chase wrote: > On 2016-09-18 03:57, Nikolay Aleksandrovich Pavlov wrote: > > And if you are writing `norm 1G` somewhere (e.g. in a plugin), then > > just write it as `normal! 1G` (with bang). > > And stepping back, if you're writing *either*

using cscope with tabs

2016-09-18 Thread roy rosen
Hi all, I am using cscope with vim and have the following mapping in my .vimrc: nmap s :tab cs find s =expand("") this works fine except for the fact that it is opening a new tab every time I use it. I want to open a new tab only if the file does not exist in one of the already opened