Merge branch 'master' into zig-0.14

This commit is contained in:
CJ van den Berg 2025-03-04 21:15:14 +01:00
commit a959563bc7
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
11 changed files with 253 additions and 75 deletions

View file

@ -149,7 +149,7 @@
["escape", "cancel"],
["enter", "smart_insert_line"],
["delete", "delete_forward"],
["backspace", "delete_backward"],
["backspace", "smart_delete_backward"],
["left", "move_left"],
["right", "move_right"],
["up", "move_up"],
@ -164,12 +164,19 @@
["\"", "smart_insert_pair", "\"", "\""],
["'", "smart_insert_pair", "'", "'"],
["(", "smart_insert_pair", "(", ")"],
[")", "smart_insert_pair_close", "(", ")"],
["[", "smart_insert_pair", "[", "]"],
["]", "smart_insert_pair_close", "[", "]"],
["{", "smart_insert_pair", "{", "}"],
["}", "smart_insert_pair_close", "{", "}"],
["", "smart_insert_pair", "", ""],
["", "smart_insert_pair_close", "", ""],
["“", "smart_insert_pair", "“", "”"],
["”", "smart_insert_pair_close", "“", "”"],
["", "smart_insert_pair", "", ""],
["", "smart_insert_pair_close", "", ""],
["«", "smart_insert_pair", "«", "»"],
["»", "smart_insert_pair_close", "«", "»"],
["left_control", "enable_jump_mode"],
["right_control", "enable_jump_mode"],