* Source/NSTextView_actions.m: Change cursor movement implementations

when collapsing a selection.
        * Source/NSParagraphStyle.m (-setBaseWritingDirection:): Add comment.
        * Source/NSAttributedString: Add and remove characters in the word
        break character set.
        * KeyBindings/DefaultKeyBindings.dict: Change control-f and control-b
        to moveForward: and moveBackward:



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24136 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ratmice 2006-11-20 16:20:15 +00:00
parent 65f7efa8fd
commit d3895d8f14
5 changed files with 207 additions and 37 deletions

View file

@ -51,10 +51,10 @@
/* Emacs Control keybindings */
"Control-a" = "moveToBeginningOfLine:";
"Control-b" = "moveLeft:";
"Control-b" = "moveBackward:";
"Control-d" = "deleteForward:";
"Control-e" = "moveToEndOfLine:";
"Control-f" = "moveRight:";
"Control-f" = "moveForward:";
"Control-h" = "deleteBackward:";
/* "Control-l" = "centerSelectionInVisibleArea:"; */
"Control-k" = "deleteToEndOfLine:";