diff options
author | 2008-06-25 23:31:04 -0400 | |
---|---|---|
committer | 2008-06-25 23:31:04 -0400 | |
commit | 32eff723437321048d2833b6b2e1a8a7dd720abb (patch) | |
tree | b9fbb5813672c77218843fd3a9ef79aa8bf49c76 /core | |
parent | 1f2eb202c5335ff4ee0d0850d4302bd9c4cb19de (diff) | |
download | textadept-32eff723437321048d2833b6b2e1a8a7dd720abb.tar.gz textadept-32eff723437321048d2833b6b2e1a8a7dd720abb.zip |
Colourise from 0, not 1 when refreshing; core/ext/key_commands.lua
Diffstat (limited to 'core')
-rw-r--r-- | core/ext/key_commands.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/key_commands.lua b/core/ext/key_commands.lua index 83d88f47..3af58a59 100644 --- a/core/ext/key_commands.lua +++ b/core/ext/key_commands.lua @@ -215,4 +215,4 @@ keys.ct.f = { function() local buffer = buffer buffer:toggle_fold( buffer:line_from_position(buffer.current_pos) ) end } -keys.f5 = { 'colourise', b, 1, -1 } +keys.f5 = { 'colourise', b, 0, -1 } |