diff options
author | 2014-10-31 15:08:56 -0400 | |
---|---|---|
committer | 2014-10-31 15:08:56 -0400 | |
commit | c085745f512aba02d01990d2ac86cb78861aa10d (patch) | |
tree | 955bc5494cec3ff3311bd5c6e2f2fbc3140563de /properties.lua | |
parent | cebd88697dc68ef260185ca1906a84cc55e627d7 (diff) | |
download | textadept-c085745f512aba02d01990d2ac86cb78861aa10d.tar.gz textadept-c085745f512aba02d01990d2ac86cb78861aa10d.zip |
Change rectangular selection mouse modifier back to Alt on Linux.
Enabled tapping Alt key during mouse selection to convert to rectangular
selection and mentioned this in the manual.
Diffstat (limited to 'properties.lua')
-rw-r--r-- | properties.lua | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/properties.lua b/properties.lua index 55ad116d..020c1a03 100644 --- a/properties.lua +++ b/properties.lua @@ -8,11 +8,8 @@ buffer.additional_selection_typing = true --buffer.multi_paste = buffer.MULTIPASTE_EACH --buffer.virtual_space_options = buffer.VS_RECTANGULARSELECTION + -- buffer.VS_USERACCESSIBLE -if not CURSES then - -- Note: Always Ctrl+Alt on non-Win32 curses and always Alt on Win32 curses. - buffer.rectangular_selection_modifier = (WIN32 or OSX) and buffer.MOD_ALT or - buffer.MOD_SUPER -end +buffer.rectangular_selection_modifier = buffer.MOD_ALT +buffer.mouse_selection_rectangular_switch = true --buffer.additional_carets_blink = false --buffer.additional_carets_visible = false |