mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Add an option to set the key sent by backspace for those whose system
uses ^H rather than ^?. GitHub issue 1969.
This commit is contained in:
@ -147,6 +147,12 @@ static const char *options_table_status_format_default[] = {
|
||||
/* Top-level options. */
|
||||
const struct options_table_entry options_table[] = {
|
||||
/* Server options. */
|
||||
{ .name = "backspace",
|
||||
.type = OPTIONS_TABLE_KEY,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.default_num = '\177',
|
||||
},
|
||||
|
||||
{ .name = "buffer-limit",
|
||||
.type = OPTIONS_TABLE_NUMBER,
|
||||
.scope = OPTIONS_TABLE_SERVER,
|
||||
|
Reference in New Issue
Block a user