Mercurial > dotfiles
changeset 820:423e6e3b247a
feat: make line start/end movements select
author | zegervdv <zegervdv@me.com> |
---|---|
date | Fri, 15 Dec 2023 07:58:51 +0100 |
parents | 5d48918b3a65 |
children | 03e120882791 |
files | dot_config/helix/config.toml |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/dot_config/helix/config.toml Fri Dec 15 07:58:09 2023 +0100 +++ b/dot_config/helix/config.toml Fri Dec 15 07:58:51 2023 +0100 @@ -18,3 +18,8 @@ [keys.normal."space"] o = "file_picker_in_current_buffer_directory" + +[keys.normal.g] +l = ["collapse_selection", "extend_to_line_end"] +h = ["collapse_selection", "extend_to_line_start"] +s = ["collapse_selection", "select_mode", "goto_first_nonwhitespace", "exit_select_mode"]