Difference between revisions of "Vimperator"

From Vague Hope Wiki
Jump to: navigation, search
(New page: These are my customisations for making vimperator (firefox plugin) more sane. # set GUI options. :set go+=mTB # make auto complete work. :set wildoptions=auto # allow ctrl+k to get to s...)
(No difference)

Revision as of 04:50, 6 December 2009

These are my customisations for making vimperator (firefox plugin) more sane.

  1. set GUI options.
set go+=mTB
  1. make auto complete work.
set wildoptions=auto
  1. allow ctrl+k to get to search bar.
noremap <C-k> <A-d><Tab>
  1. make copy-past work as expected.
noremap <C-c> <C-v><C-c>
noremap <C-v> <C-v><C-v>
inoremap <C-c> <C-v><C-c>
inoremap <C-v> <C-v><C-v>
  1. make it still possible to stop page load:
noremap <C-d> :stop<CR>
  1. make undo work nicely in text boxes.
inoremap <C-z> <C-v><C-z>
  1. save config.
mkv