mirror of
https://github.com/nushell/nushell.git
synced 2025-05-20 01:40:47 +02:00
Closes #15160 # User-Facing Changes Certain "variable not found" errors no longer highlight the surrounding block. Before: ```nushell do { match foo { _ => $in } } Error: nu:🐚:variable_not_found × Variable not found ╭─[entry #1:1:1] 1 │ ╭─▶ do { 2 │ │ match foo { 3 │ │ _ => $in 4 │ │ } 5 │ ├─▶ } · ╰──── variable not found ``` After: ```nushell Error: nu:🐚:variable_not_found × Variable not found ╭─[entry #1:3:10] 2 │ match foo { 3 │ _ => $in · ─┬─ · ╰── variable not found ``` |
||
---|---|---|
.. | ||
attribute.rs | ||
block.rs | ||
call.rs | ||
cell_path.rs | ||
expr.rs | ||
expression.rs | ||
import_pattern.rs | ||
keyword.rs | ||
match_pattern.rs | ||
mod.rs | ||
operator.rs | ||
pipeline.rs | ||
range.rs | ||
table.rs | ||
traverse.rs | ||
unit.rs | ||
value_with_unit.rs |