0.6.0 • Published 11 years ago

js-vim-command v0.6.0

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

#Vim Command Parser

Vim's commands are powerful. This library is meant to parse those that fit a general syntax of:

[count][operator][count][motion]

As defined in vim docs

##Usage

var Parser = require('vim-command-parser'), parser = new Parser();

##Format

Input: command string

parser.parse('c3fa')

Output: object

{
	description: '{operator}{count}{motion}',
	value: ['c', 3, 'fa']
}

Why is this useful? Imagine implementing the actual commands like so:

//Define command handlers
var commands = {
	'{count}{motion}': function(count, motion) {
		while(ct--) this.exec(motion);
	}
};
//Use the parser to map keystrokes to handlers
var keyBuffer = '';
vim.on('key', function(key) {
	keyBuffer += key;
	var command = parser.parse(keyBuffer);
	if(command.description in commands) commands[command.description].apply(vim,command.value
});

##TODO:

  • Registers
0.6.0

11 years ago

0.5.0

11 years ago

0.0.0

11 years ago