Automated deployment: Fri Nov 5 12:24:45 UTC 2021 48ab6eac21

gh-pages
sayanarijit 3 years ago
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 = &quot;on_key called&quot; },
},
},
f1 = {
messages = {
{ LogInfo = &quot;on_key called&quot; },
},
},
tab = {
messages = {
{ LogInfo = &quot;on_key called&quot; },
@ -191,6 +186,11 @@ xplr.config.modes.custom.test = {
&quot;Terminate&quot;,
},
},
f1 = {
messages = {
{ LogInfo = &quot;on_key called&quot; },
},
},
},
on_alphabet = {
messages = {
@ -222,6 +222,11 @@ xplr.config.modes.custom.test = {
{ LogInfo = &quot;on_navigation called&quot; },
},
},
on_function = {
messages = {
{ LogInfo = &quot;on_function called&quot; },
},
},
default = {
messages = {
{ LogInfo = &quot;default called&quot; },

@ -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 = &quot;on_key called&quot; },
},
},
f1 = {
messages = {
{ LogInfo = &quot;on_key called&quot; },
},
},
tab = {
messages = {
{ LogInfo = &quot;on_key called&quot; },
@ -843,6 +843,11 @@ xplr.config.modes.custom.test = {
&quot;Terminate&quot;,
},
},
f1 = {
messages = {
{ LogInfo = &quot;on_key called&quot; },
},
},
},
on_alphabet = {
messages = {
@ -874,6 +879,11 @@ xplr.config.modes.custom.test = {
{ LogInfo = &quot;on_navigation called&quot; },
},
},
on_function = {
messages = {
{ LogInfo = &quot;on_function called&quot; },
},
},
default = {
messages = {
{ LogInfo = &quot;default called&quot; },

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save