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...)
 
Line 1: Line 1:
 
These are my customisations for making vimperator (firefox plugin) more sane.
 
These are my customisations for making vimperator (firefox plugin) more sane.
  
 +
<pre>
 
# set GUI options.
 
# set GUI options.
 
:set go+=mTB
 
:set go+=mTB
Line 24: Line 25:
 
# save config.
 
# save config.
 
:mkv
 
:mkv
 +
</pre>

Revision as of 04:51, 6 December 2009

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 search bar.
:noremap <C-k> <A-d><Tab>

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

# make it still possible to stop page load:
:noremap <C-d> :stop<CR>

# make undo work nicely in text boxes.
:inoremap <C-z> <C-v><C-z>

# save config.
:mkv