Wind

Results 163 comments of Wind

@paul-scott Sorry, I don't have ideas, and actually I don't know much about `treesitter scm file`... I just think that once the relative `treesitter` issue https://github.com/nvim-treesitter/nvim-treesitter/issues/1136 issue is correctly handled,...

Here is another example which makes me think the cost comes from python GIL acquire: rust code: ```rust use pyo3::prelude::*; use std::time::SystemTime; fn main() -> PyResult { let now =...

Hi all, thanks for your kindly feed back, I can talk about what I'm trying to achieve exactly with my original code, and why I need to use `Python +...

> personally I would always prefer the data-driven approach: make some benchmarks, do some profiling, identify the real bottlenecks in your code (how much time is spent inside the methods...

I don't think select should work like this. Because it accept input from pipeline(by design), its' positional argument are just column path, let's assume if you have a file like...

I'd vote for 2,3,4,5 > one of the big differences previously was that take would work on binary and first wouldn't. I'm not sure it still exists but that was...

Since @webbedspace have provide a good doc about overview of nushell commands. For this pr, I think it's ok to take a step back and see how we will come...

Oh, sorry, I forget it, just updated code

I think `nu_plugin_from_bencode` itself need to publish and release with a new nu relative dependencies. ![图片](https://user-images.githubusercontent.com/22256154/197505691-ea92ee79-900e-422b-95ee-fc9421273846.png) Currently the dependency version will lead nu to freeze if you're using nushell 0.70

> but nushell also should not hang the terminal when ran on an invalid plugin Yeah, I agree that's a good idea, I've checked out the following crate: https://github.com/jcreekmore/timeout-readwrite-rs But...