fish-shell/src/tests
Fabian Boehm 217b009e18
abbr: expand command abbrs after decorators (#10396)
Currently, we expand command-abbrs (those with `--position command`) after `if`, but not after `command` or `builtin` or `time`:

```fish
abbr --add gc "git checkout"
```

will expand as `if gc` but not as `command gc`.

This was explicitly tested, but I have no idea why it shouldn't be?
2024-03-27 17:17:55 +01:00
..
abbrs.rs abbr: expand command abbrs after decorators (#10396) 2024-03-27 17:17:55 +01:00
common.rs Remove now unused assert helpers 2024-02-22 20:10:16 +01:00
complete.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
debounce.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
editable_line.rs
encoding.rs
env.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
env_universal_common.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
expand.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
fd_monitor.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
highlight.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
history.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
input.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
input_common.rs Move input tests into their own module in the tests dir 2024-01-21 18:19:40 -08:00
mod.rs Use RAII for restoring term modes 2024-03-24 16:34:36 +01:00
pager.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
parse_util.rs Fix regression in parse_util_process_extent 2024-03-24 16:34:36 +01:00
parser.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
reader.rs
redirection.rs
screen.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
std.rs Fix formatting of new test 2024-03-09 22:06:33 -06:00
string_escape.rs Reduce some numbers to make cargo test run faster 2024-02-02 16:44:36 +01:00
termsize.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
threads.rs
tokenizer.rs
topic_monitor.rs Make test_init() return a scope guard 2024-03-24 16:33:35 +01:00
wgetopt.rs