2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-15 05:28:45 +00:00
nushell/TODO.md

28 lines
629 B
Markdown
Raw Normal View History

2021-08-18 05:34:38 +12:00
# Todo
- [x] Env shorthand
- [x] String interpolation
- [x] Aliases
- [x] Env vars
- [x] Sub commands
- [x] Floats
- [x] Tests
2021-08-18 06:00:16 +12:00
- [x] Decl requires $ but shouldn't
2021-08-18 05:34:38 +12:00
- [x] alias highlighting at call site
- [x] refactor into subcrates
- [x] subcommand alias
2021-08-18 06:00:16 +12:00
- [x] type inference from successful parse (eg not `List<unknown>` but `List<int>`)
2021-09-01 15:17:14 +12:00
- [x] parsing tables
2021-09-02 09:20:53 +12:00
- [ ] Column path
2021-08-27 14:30:10 +12:00
- [ ] ...rest without calling it rest
- [ ] operator overflow
2021-08-18 05:34:38 +12:00
- [ ] finish operator type-checking
- [ ] Ranges
- [ ] Source
- [ ] Autoenv
- [ ] Block params
2021-08-27 14:30:10 +12:00
- [ ] let [first, rest] = [1, 2, 3]
2021-08-18 05:34:38 +12:00
## Maybe:
- [ ] default param values?
- [ ] Unary not?