updated insert modes + fixed status bar help
All checks were successful
Version Check / check-version (pull_request) Successful in 3s

This commit is contained in:
2026-03-17 14:29:51 +01:00
parent 01a7bd44b7
commit f6a84416e6
7 changed files with 85 additions and 17 deletions

View File

@@ -106,6 +106,8 @@ pub struct KeybindsConfig {
pub down: String,
pub up: String,
pub edit: String,
pub edit_append: String,
pub edit_substitute: String,
pub save: String,
pub quit: String,
pub normal_mode: String,
@@ -125,6 +127,8 @@ impl Default for KeybindsConfig {
down: "j".to_string(),
up: "k".to_string(),
edit: "i".to_string(),
edit_append: "A".to_string(),
edit_substitute: "S".to_string(),
save: ":w".to_string(),
quit: ":q".to_string(),
normal_mode: "Esc".to_string(),