Kevin van Rooijen

Results 39 comments of Kevin van Rooijen

Figured it out. I had to add an `argcount` which defaults to `0`. ```python from bytecode import ConcreteBytecode, ConcreteInstr bytecode_fn = ConcreteBytecode() bytecode_fn.varnames = ["x"] bytecode_fn.consts = [10] bytecode_fn.argcount =...

Currently not, however this should be quite easy to implement. I just need to create an additional mode which uses Comint instead of Compile. The downside is that comint-mode isn't...

Sorry for getting back at this so late, I've been pretty busy and (sadly) haven't done any Rust dev for a long while. IIRC I looked into this in January...

Maybe we can add the simplified keys in parallel with the originals? That way we don't break anyone's workflow and we get the simplified keys. What do you think?

I'm not a fan breaking changes. If people want to change the keybindings they can. But I don't have a view of how many people actually use this package and...

Cool, I think this would also fix https://github.com/kwrooijen/cargo.el/issues/83 ?

Try this: ```emacs lisp (use-package cargo :hook ((rust-mode . cargo-minor-mode) (toml-mode . cargo-minor-mode))) ```

You could use [Emacs Overlays](https://www.gnu.org/software/emacs/manual/html_node/elisp/Overlays.html). This command takes the entire buffer, and expands it? In that case something like.. ``` (setq rust-expand-overlay (make-overlay 1 (point-max)) (overlay-put rust-expand-overlay 'invisible t) (overlay-put...

Maybe we can add the `upgrade`, and mark `update` as obsolete? Since some people might still be on the older version?

I honestly don't remember what the reason what to override `default-directory`. It could be that it had something to do with sub workspaces but I don't know. I haven't used...