Klas Segeljakt
Klas Segeljakt
For just parsing it seems to work nice (using [`shlex`](https://crates.io/crates/shlex) for tokenizing). ```rust use clap::CommandFactory; use clap::FromArgMatches; use clap::Parser; use clap::Error #[derive(Debug, PartialEq, Eq, Parser)] enum Command { /// Quit...
It might be good to restrict so that you can only implement methods/traits for locally defined types (like the orphan rule in Rust), or else you can end up with...
When coming from Menhir, this is the one feature I miss. In Menhir, you can just write `$loc` to get the location of the current production. ``` stmt: | ";"...
The files also seem to be available on Huggingface
It happens when running `` keymaps as well, e.g.: ```lua vim.keymap.set('', 'w', 'CamelCaseMotion_w', opt_plug) vim.keymap.set('', 'b', 'CamelCaseMotion_b', opt_plug) vim.keymap.set('', 'e', 'CamelCaseMotion_e', opt_plug) ``` I don't think this case can be...
You can do: ```vim command! -range SiliconUnindent :'
Ah.. it does not seem to work like I thought, this: ```python if condition: do_interesting_thing() do_something_else() ``` becomes: ```python if condition: do_interesting_thing() do_something_else() ``` I'm not sure how but there...
I believe the format of the theme files is `.tmTheme`, which is used by Sublime Text. It would be really cool like you say if the plugin defaults to generating...
Hi, the design looks very nice. Maybe we could add this as a lower-level interface for those who want more flexibility and fewer assumptions.
Hi, that is an interesting point. I will try to find a fix, it might require some additions to the API. This [page](https://abarker.github.io/typped/juxtaposition_operators.html) gives some ideas about how to support...