working perfectly well, except for the letter e

This commit is contained in:
filipriec
2025-02-25 13:19:33 +01:00
parent 820e457525
commit 584ee2f651
3 changed files with 208 additions and 5 deletions

View File

@@ -13,6 +13,12 @@ move_left = ["h"]
move_right = ["l"]
move_up = ["k", "Up"]
move_down = ["j", "Down"]
move_word_next = ["w"] # Move to beginning of next word
move_word_end = ["e"] # Move to end of current/next word
move_word_prev = ["b"] # Move to beginning of previous word
move_word_end_prev = ["ge"] # Move to end of previous word
move_line_start = ["0"] # Move to beginning of line
move_line_end = ["$"] # Move to end of line
[colors]
theme = "dark"