File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -200,8 +200,8 @@ cliCmds[":"].commands = {
200200 "q!" : function ( ) {
201201 cliCmds . q ( null , { force : true } ) ;
202202 } ,
203- tabNext : "gototabright" ,
204- tabPrevious : "gototableft" ,
203+ tabn : "gototabright" ,
204+ tabp : "gototableft" ,
205205 tabfirst : function ( ) {
206206 tabbehaviors . cycleTab ( "first" ) ;
207207 } ,
@@ -225,8 +225,8 @@ cliCmds[":"].commands = {
225225
226226// aliases
227227cliCmds [ ":" ] . commands . write = cliCmds [ ":" ] . commands . w ;
228- cliCmds [ ":" ] . commands . tabn = cliCmds [ ":" ] . commands . tabNext ;
229- cliCmds [ ":" ] . commands . tabp = cliCmds [ ":" ] . commands . tabPrevious ;
228+ cliCmds [ ":" ] . commands . tabNext = cliCmds [ ":" ] . commands . tabn ;
229+ cliCmds [ ":" ] . commands . tabPrevious = cliCmds [ ":" ] . commands . tabp ;
230230cliCmds [ ":" ] . commands . tabc = cliCmds [ ":" ] . commands . tabclose ;
231231
232232cliCmds [ ":" ] . commands . set = {
@@ -354,7 +354,7 @@ function endCommandInput(cmdLine) {
354354exports . initCmdLine = function ( cmdLine ) {
355355 cmdLine . commands . bindKeys ( {
356356 "Shift-Return|Ctrl-Return|Alt-Return" : function ( cmdLine ) { cmdLine . insert ( "\n" ) ; } ,
357- "Esc|Shift-Esc" : function ( cmdLine ) {
357+ "Esc|Shift-Esc|Ctrl-[ " : function ( cmdLine ) {
358358 endCommandInput ( cmdLine ) ;
359359 } ,
360360 "Return" : function run ( cmdLine ) {
You can’t perform that action at this time.
0 commit comments