mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-18 09:26:05 +00:00
Automated deployment: Fri Nov 5 12:24:45 UTC 2021 48ab6eac21
This commit is contained in:
parent
6fac8d57a8
commit
4215f02a46
@ -155,6 +155,7 @@ configured to with an <a href="#action">action</a>, it will intercept the key an
|
||||
<li><a href="#on_special_character">on_special_character</a></li>
|
||||
<li><a href="#on_character">on_character</a></li>
|
||||
<li><a href="#on_navigation">on_navigation</a></li>
|
||||
<li>[on_function][35]</li>
|
||||
<li><a href="#default">default</a></li>
|
||||
</ul>
|
||||
<h3 id="on_key"><a class="header" href="#on_key">on_key</a></h3>
|
||||
@ -185,6 +186,10 @@ or <a href="#on_special_character">on_special_character</a> field.</p>
|
||||
<p>Type: nullable <a href="#action">Action</a></p>
|
||||
<p>An action to perform if the keyboard input is a navigation key and is not
|
||||
mapped via the <a href="#on_key">on_key</a> field.</p>
|
||||
<h3 id="on_function"><a class="header" href="#on_function">on_function</a></h3>
|
||||
<p>Type: nullable <a href="#action">Action</a></p>
|
||||
<p>An action to perform if the keyboard input is a function key and is not mapped
|
||||
via the <a href="#on_key">on_key</a> field.</p>
|
||||
<h3 id="default"><a class="header" href="#default">default</a></h3>
|
||||
<p>Type: nullable <a href="#action">Action</a></p>
|
||||
<p>Default action to perform in case if a keyboard input not mapped via any of the
|
||||
|
@ -171,11 +171,6 @@ xplr.config.modes.custom.test = {
|
||||
{ LogInfo = "on_key called" },
|
||||
},
|
||||
},
|
||||
f1 = {
|
||||
messages = {
|
||||
{ LogInfo = "on_key called" },
|
||||
},
|
||||
},
|
||||
tab = {
|
||||
messages = {
|
||||
{ LogInfo = "on_key called" },
|
||||
@ -191,6 +186,11 @@ xplr.config.modes.custom.test = {
|
||||
"Terminate",
|
||||
},
|
||||
},
|
||||
f1 = {
|
||||
messages = {
|
||||
{ LogInfo = "on_key called" },
|
||||
},
|
||||
},
|
||||
},
|
||||
on_alphabet = {
|
||||
messages = {
|
||||
@ -222,6 +222,11 @@ xplr.config.modes.custom.test = {
|
||||
{ LogInfo = "on_navigation called" },
|
||||
},
|
||||
},
|
||||
on_function = {
|
||||
messages = {
|
||||
{ LogInfo = "on_function called" },
|
||||
},
|
||||
},
|
||||
default = {
|
||||
messages = {
|
||||
{ LogInfo = "default called" },
|
||||
|
@ -481,6 +481,7 @@ configured to with an <a href="configure-key-bindings.html#action">action</a>, i
|
||||
<li><a href="configure-key-bindings.html#on_special_character">on_special_character</a></li>
|
||||
<li><a href="configure-key-bindings.html#on_character">on_character</a></li>
|
||||
<li><a href="configure-key-bindings.html#on_navigation">on_navigation</a></li>
|
||||
<li>[on_function][35]</li>
|
||||
<li><a href="configure-key-bindings.html#default">default</a></li>
|
||||
</ul>
|
||||
<h3 id="on_key"><a class="header" href="#on_key">on_key</a></h3>
|
||||
@ -511,6 +512,10 @@ or <a href="configure-key-bindings.html#on_special_character">on_special_charact
|
||||
<p>Type: nullable <a href="configure-key-bindings.html#action">Action</a></p>
|
||||
<p>An action to perform if the keyboard input is a navigation key and is not
|
||||
mapped via the <a href="configure-key-bindings.html#on_key">on_key</a> field.</p>
|
||||
<h3 id="on_function"><a class="header" href="#on_function">on_function</a></h3>
|
||||
<p>Type: nullable <a href="configure-key-bindings.html#action">Action</a></p>
|
||||
<p>An action to perform if the keyboard input is a function key and is not mapped
|
||||
via the <a href="configure-key-bindings.html#on_key">on_key</a> field.</p>
|
||||
<h3 id="default"><a class="header" href="#default">default</a></h3>
|
||||
<p>Type: nullable <a href="configure-key-bindings.html#action">Action</a></p>
|
||||
<p>Default action to perform in case if a keyboard input not mapped via any of the
|
||||
@ -823,11 +828,6 @@ xplr.config.modes.custom.test = {
|
||||
{ LogInfo = "on_key called" },
|
||||
},
|
||||
},
|
||||
f1 = {
|
||||
messages = {
|
||||
{ LogInfo = "on_key called" },
|
||||
},
|
||||
},
|
||||
tab = {
|
||||
messages = {
|
||||
{ LogInfo = "on_key called" },
|
||||
@ -843,6 +843,11 @@ xplr.config.modes.custom.test = {
|
||||
"Terminate",
|
||||
},
|
||||
},
|
||||
f1 = {
|
||||
messages = {
|
||||
{ LogInfo = "on_key called" },
|
||||
},
|
||||
},
|
||||
},
|
||||
on_alphabet = {
|
||||
messages = {
|
||||
@ -874,6 +879,11 @@ xplr.config.modes.custom.test = {
|
||||
{ LogInfo = "on_navigation called" },
|
||||
},
|
||||
},
|
||||
on_function = {
|
||||
messages = {
|
||||
{ LogInfo = "on_function called" },
|
||||
},
|
||||
},
|
||||
default = {
|
||||
messages = {
|
||||
{ LogInfo = "default called" },
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user