Remove the files under that folder would get rid of the keyrings
and then it would remind you to create a new one.
Wednesday, July 21, 2010
Friday, July 16, 2010
Monday, July 5, 2010
working with long lines in vim
some are copied from http://vim.wikia.com/wiki/Best_Vim_Tips
When we have long lines in VIM and we set wrap option to make it a lone lines look like
several lines in view. But the moving across lines using jk are still on real lines. How to work around this?
First, we can map like the following:
noremap <C-J> gj noremap <C-K> gk
That's really useful when dealing with long lines. It lets you use Control-J and Control-K to move up and down screen lines instead of buffer lines with j and k. Control-J isn't really mapped to anything by default, it's like hitting enter, but Control-K is something to do with digraphs. However, noremap won't remove this ability in insert mode.
Alternatively, you could use:
noremap <Up> gk noremap <Down> gj
Subscribe to:
Posts (Atom)