mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-30 04:11:32 -08:00
Fix CTRL-alt-right shortcut not working (#9325)
This commit is contained in:
parent
186d1b014a
commit
5143da9cce
1 changed files with 2 additions and 2 deletions
|
|
@ -18,9 +18,9 @@ caption: {{$:/language/Search/Standard/Caption}}
|
|||
\procedure input-accept-variant-actions() <$list filter="[{$:/config/Search/NavigateOnEnter/enable}match[yes]]" emptyMessage="<$list filter='[<tiddler>get[text]!is[missing]] :else[<tiddler>get[text]is[shadow]]'><$list filter='[<tiddler>get[text]minlength[1]]'><$action-sendmessage $message='tm-edit-tiddler' $param={{{ [<tiddler>get[text]] }}}/></$list></$list>"><$list filter="[<tiddler>get[text]minlength[1]]"><$action-sendmessage $message="tm-edit-tiddler" $param={{{ [<tiddler>get[text]] }}}/></$list></$list>
|
||||
|
||||
\procedure input-actions()
|
||||
<%if [<modifier>match[alt-shift]] :and[<event-code>match[ArrowRight]] %>
|
||||
<%if [<event-code>match[ArrowRight]] :and[<modifier>match[alt-shift]] %>
|
||||
<<next-search-tab>>
|
||||
<%elseif [<modifier>match[alt-shift]] :and[<event-code>match[ArrowLeft]] %>
|
||||
<%elseif [<event-code>match[ArrowLeft]] :and[<modifier>match[alt-shift]] %>
|
||||
<<previous-search-tab>>
|
||||
<%elseif [<event-key-descriptor>match[((input-tab-right))]] %>
|
||||
<<set-next-input-tab>>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue