Skip to content

hotoo/vimkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vimkey


NPM version spm version Build status Coveralls status

Vim-like key mapping for the web from Vimlide.

Install

$ spm install vimkey --save

Usage

var Vimkey = require('vimkey');
var LINE_HEIGHT = 100;

var normalMode = new Vimkey(document, {
  countable: true,
});
normalMode.map('<Esc>', function(evt) {
  this.reset();
  evt.stopPropagation();
});
normalMode.map('j', function(evt, count = 1) {
  window.scrollBy(LINE_HEIGHT * count, 0);
  evt.stopPropagation();
});

API

.map(String key, Function handler)

key mapping.