nushell/TODO.md

31 lines
703 B
Markdown
Raw Normal View History

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