add vi mode in ipython
No Comments
add to ~/.inputrc: set editing-mode vi set keymap vi-insert
vim clipboard
On Fedora the initial installation of Vim is not compiled with ‘+xterm_clipboard’ (check it with :version). Those who wants to use clipboard register (+) have to use gvim binary in console mode instead. What I’ve done is this: yum install vim-X11 use vimx command instead of vim (or make alias) Details are here.
vim: quickfix & grep
Today quickfix and grep facilities of VIM are in my favorite list. TagList extention occupies the whole window and does not show all procedures you might want to have a list of. So I came to grep utility incorporated in VIM and quickfix ‘buffer’ which in extend to normal buffer can be quickly hidden, stores [...]