0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

helix-editor の行頭・行末への移動キーを変更

Posted at

helix-editor を使っていて戸惑ったのでキーマップを変えたというお話。

背景

vimを使用する際に割りと多用するのが、行頭・行末への移動。
helix-editorでは、HomeキーとEndキーとなっている。ノートパソコンならFn+○キーでさほど困らないかもしれないが、フルキーだと、ホームキーから離れているので押しにくい。

変更点

vimと同じに0,$を移動キーにする。

:config-openとするなどして、config.tomlを開いて

config.toml
[keys.normal]
0 = "goto_line_start"
"$" = "goto_line_end"

を追加して保存。

結果

0,$でそれぞれ、行頭、行末への移動ができた。

解決。

あとがき

今回は、変更したいキー0,$ともに割り当てられていなかったので干渉なく変更できた。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?