On 11:30 Sun 18 Mar     , Xtian Simon wrote:
> I've been testing colors in the console and in Xwindows to understand what is 
> possible in vim. I wasn't doing anything with keymaps. When I copy and paste 
> into VIM while working in Xwindows on my laptop I use right click > paste.
> 
> Now when I do this VIM is going into, 
>     (insert) VISUAL
> 
> And when I press <shift>+<;> the command line shows, 
>      :'<,'>
> 
> What could be going on?
> The things I was doing was,  
>   * In filesystem I coppied /etc/DIR_COLORS to ~/.dir_colors, but didn't edit 
> it. 
>   * In vim, command :e $GVIMRC, and found there is no gvimrc set-up. I wrote 
> a quick comment into the new file and saved it. Then discovered the file 
> saved to ~/.vim/docs/$GVIMRC. So, I deleted it.
> 
> What I did to try to roll back Xwindows, terminal and vim back to normal 
> right click was,
>   * copy RUNTIMEVIM vimrc and gvimrc to ~/ 
>   * bak'd .dir_colors 
> 
> What else can I do?
> 
> -- 
> 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

When you press ":" in visual mode it is normal vim behaviour that ":'<,'>" 
shows up.
    '<  -- is the position of the starting point of the visual area
    '>  -- is the position of the ending point of the visual area
    :'<,'> is the range for the command you want to type
You can read more about ranges with ":help cmdline-ranges".

Best,
Marcin

-- 
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

Reply via email to