mirror of
https://github.com/textmate/textmate.git
synced 2026-01-21 04:38:13 -05:00
The methods going to “begin of indented line” will go to the first non-whitespace character on the line, unless the caret is already there or to the left of this character, in which case it will go to the actual beginning of the line. The “end of indented line” methods work similarly. If you want [⇪]⌘⇠/⇢ and ⌘⌫/⌦ to use this behavior, you can add the following to your key bindings file: "@\UF702" = "moveToBeginningOfIndentedLine:"; "$@\UF702" = "moveToBeginningOfIndentedLineAndModifySelection:"; "@\UF703" = "moveToEndOfIndentedLine:"; "$@\UF703" = "moveToEndOfIndentedLineAndModifySelection:"; "@\U007F" = "deleteToBeginningOfIndentedLine:"; "@\UF728" = "deleteToEndOfIndentedLine:";