aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/keys.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-10-18 10:23:57 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-10-18 10:23:57 -0400
commitee19e174bb060bbe96565af91975ed3118bc894d (patch)
tree652d622ea36690bd5f52bc938d8ec5795de31eb2 /core/keys.lua
parenta488a97c9eb58d8e9db224f3793c74f23d26b07e (diff)
More LuaDoc updates.
Diffstat (limited to 'core/keys.lua')
-rw-r--r--core/keys.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/keys.lua b/core/keys.lua
index 2278d247..5f168028 100644
--- a/core/keys.lua
+++ b/core/keys.lua
@@ -16,13 +16,13 @@ local M = {}
-- part of what is called a "key chain", to be discussed below. When searching
-- for a command to run based on a key sequence, Textadept considers key
-- bindings in the current key mode to have priority. If no key mode is active,
--- key bindings in the current lexer have priority, followed by the ones in the
+-- language-specific key bindings have priority, followed by the ones in the
-- global table. This means if there are two commands with the same key
--- sequence, Textadept runs the one specific to the current lexer. However, if
--- the command returns the boolean value `false`, Textadept also runs the
--- lower-priority command. (This is useful for language modules to override
--- commands like Adeptsense autocompletion, but fall back to word autocompletion
--- if the first command fails.)
+-- sequence, Textadept runs the language-specific one. However, if the command
+-- returns the boolean value `false`, Textadept also runs the lower-priority
+-- command. (This is useful for language modules to override commands like
+-- Adeptsense autocompletion, but fall back to word autocompletion if the first
+-- command fails.)
--
-- ## Key Sequences
--