diff options
| author | Teddy Wing | 2017-12-20 23:29:19 +0100 |
|---|---|---|
| committer | Teddy Wing | 2017-12-20 23:29:19 +0100 |
| commit | e43d89cbba3cade58d12edb972fceaba08c58b08 (patch) | |
| tree | bcabe05a0d2ebc4533863247d309f5910358243f | |
| parent | 51c1186d1b5f9e491e64413cf00776362cd318e1 (diff) | |
| download | KeyBindings-e43d89cbba3cade58d12edb972fceaba08c58b08.tar.bz2 | |
DefaultKeyBinding.dict: Move the mark commands outside of Option
Don't shadow the characters produced by these two key combinations.
I had done this soon after my last commit probably but for whatever
reason never committed this change. Doing so now because I need to make
some additional changes to the config.
| -rw-r--r-- | DefaultKeyBinding.dict | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DefaultKeyBinding.dict b/DefaultKeyBinding.dict index 8c857ff..8d24cf3 100644 --- a/DefaultKeyBinding.dict +++ b/DefaultKeyBinding.dict @@ -113,9 +113,9 @@ "@~_" = (selectWord:,moveRight:,setMark:,moveWordRight:,moveWordLeft:,moveLeft:,selectWord:,insertText:,"-",moveWordRight:); // bookmark - "~1" = (setMark:); + "^!" = (setMark:); // jump to bookmark - "~2" = (swapWithMark:,centerSelectionInVisibleArea:); + "^@" = (swapWithMark:,centerSelectionInVisibleArea:); // > Command Option Enter // Continue a list item with indentation and include the same delimiter |
