nushell/crates/nu-cli/tests
zc he 6e88b3f8d6
refactor(completion): expression based variable/cell_path completion (#15033)
# Description

fixes #14643 , as well as some nested cell path cases:

```nushell
let foo = {a: [1 {a: 1}]}

$foo.a.1.#<tab>

const bar = {a: 1, b: 2}
$bar.#<tab>
```

So my plan of the refactoring process is that:
1. gradually move those rules of flattened shapes into expression match
branches, until they are gone
2. keep each PR focused, easier to review and track. 

# User-Facing Changes

# Tests + Formatting

+2

# After Submitting
2025-02-09 22:26:41 -05:00
..
commands Consolidate uses of test-case to rstest (#14250) 2024-11-04 19:07:59 +01:00
completions refactor(completion): expression based variable/cell_path completion (#15033) 2025-02-09 22:26:41 -05:00
main.rs Fix syntax highlighting for not (#12815) 2024-05-10 07:09:44 +08:00