diff options
| -rw-r--r-- | DefaultKeyBinding.dict | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/DefaultKeyBinding.dict b/DefaultKeyBinding.dict index 369745d..372b124 100644 --- a/DefaultKeyBinding.dict +++ b/DefaultKeyBinding.dict @@ -52,6 +52,11 @@    // blank line before current    "~O" = (moveToBeginningOfParagraph:, moveLeft:, insertNewline:); +  // Insert blank line after paragraph +  "^~o" = (moveToEndOfParagraph:, insertNewline:); +  // Insert blank line above paragraph +  "^~O" = (moveToBeginningOfParagraph:, moveLeft:, insertNewline:); +    // move line up    "^@k" = (selectParagraph:, setMark:, deleteToMark:, moveLeft:, moveToBeginningOfParagraph:, yank:, moveLeft:, selectToMark:, moveLeft:); @@ -101,11 +106,6 @@    // Move to end of paragraph and delete trailing whitespace (new)    "^~\UF703" = (moveToEndOfParagraph:, insertText:, " ", selectWord:, deleteBackward:); -  // TextMate Command-Return (Command Enter) -  "@\U000D" = (moveToEndOfParagraph:, insertNewline:); -  // Insert blank line above paragraph (Command Shift Enter) -  "@$\U000D" = (moveToBeginningOfParagraph:, moveLeft:, insertNewline:); -    // > this will kill non alphanumeric symbols and punctuation, use only on *words*    // hyphenate next space and move to next word    "@~_" = (selectWord:,moveRight:,setMark:,moveWordRight:,moveWordLeft:,moveLeft:,selectWord:,insertText:,"-",moveWordRight:); | 
