vimkey

0.1.2 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i vimkey

Weekly Downloads

1

Version

0.1.2

License

none

Last publish

Collaborators

  • hotoo