Kirawi

Results 336 comments of Kirawi

I think it uses the same version as the one used w/ MeCab as they're the same size (130 mb).

I don't know, and it probably would just be added in addition to MeCab if it was accepted. I imagine you could easily update the Kagome dictionary though. Edit: Yeah,...

I believe ublock uses web assembly.

I'm not familiar with EditorConfig, but I think that it makes more sense to deserialize into a Rust struct [(maybe one of the existing `Config` structs?)](https://github.com/helix-editor/helix/blob/master/helix-term/src/config.rs#L5-L15) and then operate on...

I think for now just lazily loading the configs based on the `Document`'s language should be fine. If that's too complicated, then I'm fine without it too. My other suggestion...

EditorConfig has globs for file extensions, and the Language config contains the extension as well. In retrospect, it would only make sense to look at the config if the buffer...

I think it could be simplified further by having the deserializer for `Theme` use the deserializer for `RawTheme`. That way the change here wouldn't be necessary: https://github.com/helix-editor/helix/pull/3067/files#diff-e045fef28ffa8dfddad18b6f9689de4865c7b4fa8a1a8b2768ea01912d2547d0R16-R18

This was discussed in the past on Matrix and there seems to be a desire to implement it, but it's pretty complicated and would take a lot of work.

I like it too, I think it could be polished a little further though. The helix pieces are disconnected, so I think getting that resolved first would make it look...