diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-13 15:12:34 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-13 15:12:34 (GMT) |
commit | c7492578c7af6a586a3797ba790569ac6abacab2 (patch) | |
tree | b4cd5e70819585b40956646b9220e91485c624fd /library | |
parent | b72f65a36074b558606887f642e92d19518a0a09 (diff) | |
download | tk-c7492578c7af6a586a3797ba790569ac6abacab2.zip tk-c7492578c7af6a586a3797ba790569ac6abacab2.tar.gz tk-c7492578c7af6a586a3797ba790569ac6abacab2.tar.bz2 |
two missing bindings for Mac OSX
Diffstat (limited to 'library')
-rw-r--r-- | library/tk.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index 1a42aea..7ef25ec 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -455,9 +455,9 @@ switch -exact -- [tk windowingsystem] { event add <<Undo>> <Command-Key-z> <Control-Lock-Key-Z> event add <<Redo>> <Command-Key-Z> <Control-Lock-Key-z> event add <<NextChar>> <Right> <Control-Key-f> <Control-Lock-Key-F> - event add <<SelectNextChar>> <Shift-Right> + event add <<SelectNextChar>> <Shift-Right> <Control-Key-F> <Control-Lock-Key-f> event add <<PrevChar>> <Left> <Control-Key-b> <Control-Lock-Key-B> - event add <<SelectPrevChar>> <Shift-Left> + event add <<SelectPrevChar>> <Shift-Left> <Control-Key-B> <Control-Lock-Key-b> event add <<NextWord>> <Option-Right> event add <<SelectNextWord>> <Shift-Option-Right> event add <<PrevWord>> <Option-Left> |