# Nushell core team meeting 2024-07-10 ## Attendees - Michael - Antoine - Jack - Devyn - Wind - Darren ## Agenda - [x] - [x] - [x] ## Discussed Topics ### config change on assignment PR - sounds good - might slow down setting `$env.config` but much faster after it's changed ### IR PR - Michael: I'd like to land it ASAP - Because it's opt-in, low risk, can just bring it in - check `$env.NU_USE_IR` in REPL, make it easier to change - curious why it's being called once after setting in the repl already - let's just land it if it's good - check on Discord - ask Darren if it's much slower to start up with the IR PR due to compilation speed ### Jack update - HTTP commands taking streaming input - Michael: been using it a lot, works great, no issues - Polars pivot commands - trying to be more consistent with polars API ### should `nu_plugin_explore_ir` be distributed with nu - if anything it's probably better to reduce the number of plugins we're shipping together with nu - best to get them on nupm if they're new - talked about polars before but separating it from the main repo, for now, could break it too easily, we'd need nightly tests ### LSP / language tooling - Antoine: the LSP needs more work, we should probably spend more time on this than getting debugging working - modules aren't handled correctly, the formatter doesn't totally work - Darren: The main problem with nufmt is that our parser is not lossless - Is it worth fixing the formatter if we need to basically rewrite it for the new parser anyway? - Maybe, yes. It's good to have ### make `gstat` use gix Still waiting for `gix status` but it would be so nice ## 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 > ```