add normal mode newline in helix

This commit is contained in:
Noah Masur
2025-07-27 10:09:35 -04:00
parent b67c90dae0
commit 57303d61e9

View File

@@ -199,13 +199,26 @@ in
"paste_before" "paste_before"
]; ];
A-S-ret = [
"open_above"
"normal_mode"
];
A-ret = [
"open_below"
"normal_mode"
];
}; };
keys.insert = { keys.insert = {
# Allows not continuing the comment # Allows not continuing the comment
"A-ret" = [ "A-ret" = [
"insert_newline" "insert_newline"
"delete_word_backward" "extend_to_line_bounds"
"delete_selection"
"insert_newline"
"move_line_up"
"insert_mode"
]; ];
}; };