Skip to content
Snippets Groups Projects
Commit 96b5193a authored by Lanny's avatar Lanny Committed by Marijn Haverbeke
Browse files

Added basic framework for ex mode commands and go-to-line ex mode command.

parent 7efeef86
No related branches found
No related tags found
No related merge requests found
......@@ -224,6 +224,11 @@
cm.setOption("keyMap", "vim-insert");
}
function dialog(cm, text, shortText, f) {
if (cm.openDialog) cm.openDialog(text, f);
else f(prompt(shortText, ""));
}
// main keymap
var map = CodeMirror.keyMap.vim = {
// Pipe (|); TODO: should be *screen* chars, so need a util function to turn tabs into spaces?
......@@ -294,6 +299,14 @@
popCount();
CodeMirror.commands.goLineStart(cm);
},
"Shift-;": function(cm) {
var exModeDialog = '<input type="text" />';
dialog(cm, exModeDialog, 'ex mode:', function(command) {
if (command.match(/\d+/)) {
cm.setCursor(command-1, cm.getCursor().ch);
}
});
},
nofallthrough: true, style: "fat-cursor"
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment