mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
1.3 KiB
1.3 KiB
Todo
- Env shorthand
- String interpolation
- Aliases
- Env vars
- Sub commands
- Floats
- Tests
- Decl requires $ but shouldn't
- alias highlighting at call site
- refactor into subcrates
- subcommand alias
- type inference from successful parse (eg not
List<unknown>
butList<int>
) - parsing tables
- Block params
- Ranges
- Column path
- ...rest without calling it rest
- Iteration (
each
) over tables - Row conditions
- Simple completions
- Detecting
$it
currently only looks at top scope but should find any free$it
in the expression (including subexprs) - Signature needs to make parameters visible in scope before block is parsed
- Externals
- Modules and imports
- Exports
- Source
- Error shortcircuit (stopping on first error). Revised: errors emit first, but can be seen by commands.
- Value serialization
- Handling rows with missing columns during a cell path
- finish operator type-checking
- Input/output types
- Support for
$in
- ctrl-c support
- operator overflow
- Overlays (replacement for
autoenv
)
Maybe:
- default param values?
- Unary not?
- let [first, rest] = [1, 2, 3] (design question: how do you pattern match a table?)