# Nushell core team meeting 2024-07-17 ## Attendees - Darren - Jack - Michael - Antoine - Andy - Ian - Devyn ## Agenda - [x] [`$in` overhaul](https://github.com/nushell/nushell/pull/13357) - [x] [Assignment consistency](https://github.com/nushell/nushell/pull/13385) WIP - [x] [Table value proposal](/9nxmFMqmS0KMtyEgHM24cA) - [x] [autoload-dirs processing (order vs precedence)](https://github.com/nushell/nushell/pull/13382) - [x] anything else we'd like to see to merge [ctrlc for plugins](https://github.com/nushell/nushell/pull/13181)? - [x] ## Discussed Topics ### `$in` overhaul Land it today ### Assignment consistency - Sounds like everybody likes this - Kind of a big breaking change because `$env.FOO = bareword` changes to run `bareword` ### Table value proposal - https://github.com/devyn/bench-colmajor/tree/main/src - don't change anything initially, just add `into table`, iterate like it's a list of records, but commands that are aware can use it more efficiently ## Issues > :bulb: the issues which [needs-core-team-attention](https://github.com/nushell/nushell/labels/needs-core-team-attention) > :bulb: **Note** > to list all the PRs currently [opened in `nushell/nushell`](https://github.com/nushell/nushell/pulls): > ```nu > gh pr list --json url,number,author,title > | from json > | each {|i| > $"- [($i.number)]\(($i.url)\) ($i.title) \(@($i.author.login)\)" > } > | reverse > | to text > ```