mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-08 02:31:18 -03:00
Merge branch 'master' into ast_templates
Conflicts: fish_tests.cpp
This commit is contained in:
@@ -1660,7 +1660,7 @@ static int builtin_echo(parser_t &parser, wchar_t **argv)
|
||||
wc = L'\b';
|
||||
break;
|
||||
case L'e':
|
||||
wc = L'\e';
|
||||
wc = L'\x1B';
|
||||
break;
|
||||
case L'f':
|
||||
wc = L'\f';
|
||||
@@ -2372,8 +2372,9 @@ static int builtin_read(parser_t &parser, wchar_t **argv)
|
||||
reader_set_highlight_function(&highlight_shell);
|
||||
reader_set_test_function(&reader_shell_test);
|
||||
}
|
||||
/* No autosuggestions in builtin_read */
|
||||
/* No autosuggestions or abbreviations in builtin_read */
|
||||
reader_set_allow_autosuggesting(false);
|
||||
reader_set_expand_abbreviations(false);
|
||||
reader_set_exit_on_interrupt(true);
|
||||
|
||||
reader_set_buffer(commandline, wcslen(commandline));
|
||||
|
||||
Reference in New Issue
Block a user