mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-31 23:28:45 +00:00
0e9b496bba
With a commandline like ``` a b c d ``` and the cursor at the beginning, this would eat "a b", which isn't a sensible bigword. Bigword should be "a word, with optional leading whitespace". This was caused by an overly zealous state-machine that always ate one char and only *then* started eating leading whitespace. Instead eat *a character*, and if it was whitespace go on eating whitespace, and if it was a printable go straight to only eating printables. Fixes #7325. |
||
---|---|---|
.. | ||
bind.py | ||
bind_mode_events.py | ||
commandline.py | ||
complete.py | ||
exit.py | ||
exit_handlers.py | ||
fg.py | ||
fkr.py | ||
generic.py | ||
histfile.py | ||
history.py | ||
job_summary.py | ||
pipeline.py | ||
postexec.py | ||
read.py | ||
sigint.py | ||
signals.py | ||
tty_ownership.py | ||
wait.py |