mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 04:49:10 +08:00
Fix special readline functions after and/or
Here we needed to handle self-insert immediately, but we ended up
returning it.
Fixes #9051
(cherry picked from commit d920610f96
)
This commit is contained in:
parent
e67b6c1f00
commit
98838ac429
|
@ -15,6 +15,7 @@ This release also fixes a number of problems identified in fish 3.5.0.
|
|||
- ``status fish-path`` on Linux-based platforms could print the path with a " (deleted)" suffix (such as ``/usr/bin/fish (deleted)``), which is now removed (:issue:`9019`).
|
||||
- Cancelling an initial command (from fish's ``--init-command`` option) with :kbd:`Control-C` no longer prevents configuration scripts from running (:issue:`9024`).
|
||||
- The job summary contained extra blank lines if the prompt used multiple lines, which is now fixed (:issue:`9044`).
|
||||
- Using special input functions in bindings, in combination with ``and``/``or`` conditionals, no longer crashes (:issue:`9051`).
|
||||
|
||||
--------------
|
||||
|
||||
|
|
|
@ -755,12 +755,12 @@ char_event_t inputter_t::read_char(const command_handler_t &command_handler) {
|
|||
}
|
||||
case readline_cmd_t::func_and:
|
||||
case readline_cmd_t::func_or: {
|
||||
// If previous function has right status, we keep reading tokens
|
||||
// If previous function has correct status, we keep reading tokens
|
||||
if (evt.get_readline() == readline_cmd_t::func_and) {
|
||||
if (function_status_) return readch();
|
||||
// Don't return immediately, we might need to handle it here - like self-insert.
|
||||
if (function_status_) continue;
|
||||
} else {
|
||||
assert(evt.get_readline() == readline_cmd_t::func_or);
|
||||
if (!function_status_) return readch();
|
||||
if (!function_status_) continue;
|
||||
}
|
||||
// Else we flush remaining tokens
|
||||
do {
|
||||
|
|
|
@ -292,6 +292,16 @@ send("echo git@github.com:fish-shell/fish-shell")
|
|||
send("\x17\x17\x17\r")
|
||||
expect_prompt("git@", unmatched="ctrl-w does not stop at @")
|
||||
|
||||
sendline("abbr --add foo 'echo foonanana'")
|
||||
expect_prompt()
|
||||
sendline("bind ' ' expand-abbr or self-insert")
|
||||
expect_prompt()
|
||||
send("foo ")
|
||||
expect_str("echo foonanana")
|
||||
send(" banana\r")
|
||||
expect_str(" banana\r")
|
||||
expect_prompt("foonanana banana")
|
||||
|
||||
# Ensure that nul can be bound properly (#3189).
|
||||
send("bind -k nul 'echo nul seen'\r")
|
||||
expect_prompt()
|
||||
|
|
Loading…
Reference in New Issue
Block a user