Skip to content

Commit

Permalink
Don't store 'gt' or 'gT' in repeat register for '.' command.
Browse files Browse the repository at this point in the history
  • Loading branch information
keforbes committed Jun 6, 2012
1 parent f17fb26 commit 2cf9a46
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ protected State<Command> normalModeBindings() {
leafBind('c', dontRepeat(editText("folding.collapse"))),
leafBind('M', dontRepeat(editText("folding.collapse_all")))),
transitionBind('g',
leafBind('t', (Command) ChangeTabCommand.NEXT_EDITOR),
leafBind('T', (Command) ChangeTabCommand.PREVIOUS_EDITOR)),
leafBind('t', dontRepeat(ChangeTabCommand.NEXT_EDITOR)),
leafBind('T', dontRepeat(ChangeTabCommand.PREVIOUS_EDITOR))),
leafCtrlBind('f', dontRepeat(go("pageDown"))),
leafCtrlBind('b', dontRepeat(go("pageUp"))),
leafCtrlBind('d', dontRepeat(go("pageDown"))),
Expand Down

0 comments on commit 2cf9a46

Please sign in to comment.