vim R command

This commit is contained in:
misfo 2011-06-01 20:47:49 -05:00
commit fcdbb5edc5

View file

@ -51,6 +51,11 @@ var vimStates = {
exec: "gotoright",
then: "insertMode"
},
{
key: "shift-r",
exec: "overwrite",
then: "replaceMode"
},
{
regex: [ "([0-9]*)", "(k|up)" ],
exec: "golineup",
@ -109,6 +114,13 @@ var vimStates = {
key: "esc",
then: "start"
}
],
replaceMode: [
{
key: "esc",
exec: "overwrite",
then: "start"
}
]
};