tweaks: remove the now unneeded special keycode INDENT_KEY

This commit is contained in:
Benno Schulenberg 2024-06-09 16:48:06 +02:00
parent 9b7a813069
commit aa844ada4e
2 changed files with 0 additions and 4 deletions

View File

@ -227,9 +227,6 @@
#define PLANTED_A_COMMAND 0x4EC #define PLANTED_A_COMMAND 0x4EC
#define NO_SUCH_FUNCTION 0x4EF #define NO_SUCH_FUNCTION 0x4EF
/* A special keycode for when <Tab> is pressed while the mark is on. */
#define INDENT_KEY 0x4F1
/* A special keycode to signal the beginning and end of a bracketed paste. */ /* A special keycode to signal the beginning and end of a bracketed paste. */
#define BRACKETED_PASTE_MARKER 0x4FB #define BRACKETED_PASTE_MARKER 0x4FB

View File

@ -1311,7 +1311,6 @@ void shortcut_init(void)
add_to_sclist(MMAIN, "^6", 0, do_mark, 0); add_to_sclist(MMAIN, "^6", 0, do_mark, 0);
add_to_sclist(MMAIN, "^^", 0, do_mark, 0); add_to_sclist(MMAIN, "^^", 0, do_mark, 0);
add_to_sclist(MMAIN, "M-}", 0, do_indent, 0); add_to_sclist(MMAIN, "M-}", 0, do_indent, 0);
add_to_sclist(MMAIN, "", INDENT_KEY, do_indent, 0);
add_to_sclist(MMAIN, "M-{", 0, do_unindent, 0); add_to_sclist(MMAIN, "M-{", 0, do_unindent, 0);
add_to_sclist(MMAIN, "Sh-Tab", SHIFT_TAB, do_unindent, 0); add_to_sclist(MMAIN, "Sh-Tab", SHIFT_TAB, do_unindent, 0);
add_to_sclist(MMAIN, "M-:", 0, record_macro, 0); add_to_sclist(MMAIN, "M-:", 0, record_macro, 0);