diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-10 10:20:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-10 10:20:50 (GMT) |
commit | b7a61d63d4aabbd30586eea219f7402f3da61ac6 (patch) | |
tree | 6270ad7be676303bb66e0b80674b1aba64a0b72b /library/text.tcl | |
parent | 37ceb5fe2eba6473a2fbdb5407e449ef96345a43 (diff) | |
download | tk-b7a61d63d4aabbd30586eea219f7402f3da61ac6.zip tk-b7a61d63d4aabbd30586eea219f7402f3da61ac6.tar.gz tk-b7a61d63d4aabbd30586eea219f7402f3da61ac6.tar.bz2 |
define two more virtual bindings, and correct various Mac
bindings according to Apple OSX documentation.
Doc updated as well
Diffstat (limited to 'library/text.tcl')
-rw-r--r-- | library/text.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/text.tcl b/library/text.tcl index 94bb223..e59a86e 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -240,10 +240,10 @@ bind Text <Shift-Select> { set tk::Priv(selectMode) char tk::TextKeyExtend %W insert } -bind Text <Control-slash> { +bind Text <<SelectAll>> { %W tag add sel 1.0 end } -bind Text <Control-backslash> { +bind Text <<SelectNone>> { %W tag remove sel 1.0 end } bind Text <<Cut>> { |