Add vim commands for folding

This commit is contained in:
Tenor Biel 2013-06-17 23:11:05 -05:00 committed by nightwing
commit 5f1a69a38e

View file

@ -83,6 +83,18 @@ var actions = exports.actions = {
case "b":
editor.renderer.alignCursor(null, 1);
break;
case "c":
coreCommands.fold();
break;
case "o":
coreCommands.unfold();
break;
case "C":
coreCommands.foldall();
break;
case "O":
coreCommands.unfoldall();
break;
}
}
},