diff options
author | 2016-04-29 08:32:51 -0400 | |
---|---|---|
committer | 2016-04-29 08:32:51 -0400 | |
commit | 75325af99bb6db7343c9ee35c290540d9646b18c (patch) | |
tree | f45263aee0d683f8b294c0ce7e3d3c48ffbc9a59 /modules/textadept | |
parent | 1016b6df151e12a4496b3d3d4c1aff3f1fe14d58 (diff) | |
download | textadept-75325af99bb6db7343c9ee35c290540d9646b18c.tar.gz textadept-75325af99bb6db7343c9ee35c290540d9646b18c.zip |
Added keybinding for setting compile/run args; modules/textadept/keys.lua
Diffstat (limited to 'modules/textadept')
-rw-r--r-- | modules/textadept/keys.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index c392bc7e..17f45df1 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -220,7 +220,7 @@ module('textadept.keys')]] -- Windows and Linux key bindings. -- -- Unassigned keys (~ denotes keys reserved by the operating system): --- c: A C H I p Q T ~ V Y _ ) ] } + +-- c: C H I p Q T ~ V Y _ ) ] } + -- a: aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ_ ) ] } *+-/=\n\s -- ca: aAbBcCdD F jJkKlLmM N qQ t xXy zZ_"'()[]{}<>* / \s -- @@ -235,7 +235,7 @@ module('textadept.keys')]] -- Mac OSX key bindings. -- -- Unassigned keys (~ denotes keys reserved by the operating system): --- m: A C ~ I JkK ~M p ~ tT V yY _ ) ] } + ~~\n +-- m: C ~ I JkK ~M p ~ tT V yY _ ) ] } + ~~\n -- c: cC D gG H J K L oO qQ xXyYzZ_ ) ] } * / -- cm: aAbBcC~D F ~HiIjJkKlL~MnN p q~rRsStTuUvVwWxXyYzZ_"'()[]{}<>*+-/=\t\n -- @@ -387,6 +387,9 @@ keys[not OSX and (GUI and 'cE' or 'mC') keys[not OSX and 'cr' or 'mr'] = textadept.run.run keys[not OSX and (GUI and 'cR' or 'cmr') or 'mR'] = textadept.run.compile keys[not OSX and (GUI and 'cB' or 'cmb') or 'mB'] = textadept.run.build +if GUI then + keys[not OSX and 'cA' or 'mA'] = m_tools[_L['Set _Arguments...']][2] +end keys[not OSX and (GUI and 'cX' or 'cmx') or 'mX'] = textadept.run.stop keys[not OSX and (GUI and 'cae' or 'mx') or 'cme'] = m_tools[_L['_Next Error']][2] |