nushell/tests/shell
Wind 0a2fb137af
don't run subcommand if it's surrounded with backtick quote (#14210)
# Description
Fixes: #14202
After looking into the issue, I think #13910 it's not good to cut the
span if it's in external argument.
This pr is somehow revert the change, and fix
https://github.com/nushell/nushell/issues/13431 in another way.

It introduce a new state named `State::BackTickQuote`, so if an external
arg include backtick quote, it enters the state, so backtick quote won't
be the body of a string.

# User-Facing Changes
### Before
```nushell
> ^echo `(echo aa)`
aa
> ^echo `"aa"`   # maybe it's not right to remove the inner quote.
aa
```
### After
```nushell
> ^echo `(echo aa)`
(echo aa)
> ^echo `"aa"`    # inner quote is keeped if there are backtick quote outside.
"aa"
```

# Tests + Formatting
Added 3 tests.
2024-10-31 16:13:05 +01:00
..
environment Improves startup time when using std-lib (#13842) 2024-10-03 06:28:22 -05:00
pipeline don't run subcommand if it's surrounded with backtick quote (#14210) 2024-10-31 16:13:05 +01:00
mod.rs Improve help output for scripts (#13445) 2024-08-23 21:08:27 +02:00
repl.rs Fix merging child stack into parent (#12426) 2024-04-06 15:03:22 +00:00