Select 'v' Issue

2008-11-19 Thread Ajay Jain
Hi, When I use the 'v' key and select a few lines, the color of the selection is so light grey, that I fail to see what has been selected. Could you tell me how to solve the issue? Regards, Ajay. --~--~-~--~~~---~--~~ You received this message from the "vim_use

Re: Select 'v' Issue

2008-11-19 Thread Jürgen Krämer
Hi, Ajay Jain wrote: > > When I use the 'v' key and select a few lines, the color of the > selection is so light grey, that I fail to see what has been selected. > Could you tell me how to solve the issue? execute this command highlight Visual ctermbg=DarkGray guibg=DarkGray after you have

Re: Select 'v' Issue

2008-11-19 Thread Roberto Miura Honji
You can choose a color, see the possibles in: help ctermbg 2008/11/19 Jürgen Krämer <[EMAIL PROTECTED]> > > > Hi, > > Ajay Jain wrote: > > > > When I use the 'v' key and select a few lines, the color of the > > selection is so light grey, that I fail to see what has been selected. > > Could you t

Re: Select 'v' Issue

2008-11-23 Thread yosi izaq
Change color scheme? For convenient color scheme rotation see in vim tips the tip # 955. Based on this I've added following to my .vimrc: function! SetNextColor(forward) if exists('g:colors_name') let colstr = 'default elflord peachpuff desert256 breeze morning' let colstr .= ' darkblu

Re: Select 'v' Issue

2008-11-23 Thread Tim Chase
> Change color scheme? > > For convenient color scheme rotation see in vim tips the tip # 955. For a color-scheme switcher that doesn't require hard-coding a list of colorschemes, this thread[1] offers my solution to the problem a while back. -tim [1] http://markmail.org/message/dlgi24towv2s

RE: Select 'v' Issue

2008-11-23 Thread John Beckett
yosi izaq wrote: > For convenient color scheme rotation see in > vim tips the tip # 955. As I've noted in the above tip, I have put all the color scheme rotation code in a somewhat enhanced version at tip 341 (and will soon delete what's on 955): http://vim.wikia.com/wiki/Switch_color_schemes T