mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-08-31 07:08:55 +00:00
Fix CTRL-alt-right shortcut not working (#9325)
This commit is contained in:
@@ -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>>
|
||||
|
||||
Reference in New Issue
Block a user