Emacs の癖でしょうか?コマンドバーに移動後、ctrl-p, ctrl-n でコマンドを選択しようとしてできず、イラッとくることが度々あったので設定方法を調べてみました。
コマンドバー
画像の右、青く囲まれているエリアのことです。
設定方法
user.keymapファイルに以下を記述します。
:filter-list.input {"ctrl-n" [(:filter-list.input.move-selection 1)]
"ctrl-p" [(:filter-list.input.move-selection -1)]}}
追加する場所は以下の辺りになります。
{:+ {:app {"ctrl-;" [:workspace.show]
"ctrl-:" [:show-commandbar-transient]}
:editor {"alt-w" [:editor.watch.watch-selection]
"alt-shift-w" [:editor.watch.unwatch]}
;; これを追加
:filter-list.input {"ctrl-n" [(:filter-list.input.move-selection 1)]
"ctrl-p" [(:filter-list.input.move-selection -1)]}}
:-{:app {"ctrl-space" [:show-commandbar-transient]}}}
以上です。
