Gulshan Singh

Results 170 comments of Gulshan Singh

`lv-message` is part of the [lv](https://melpa.org/#/lv) package, which seems to come from the Hydra repository: https://github.com/abo-abo/hydra/blob/master/lv.el If you think there's no way to fix this in `super-save` itself, that's fine,...

This would be a really nice feature to have. I'm currently running into similar issues with `yapf` (called `yapf` on macOS but `yapf3` on Ubuntu). I'm not sure about the...

I'm running into the same issue: ```elisp (eval-when-compile (require 'use-package)) (use-package eglot :functions eglot-managed-p :config (eglot-managed-p)) ``` I see `the function ‘eglot-managed-p’ might not be defined at runtime.` The weird...

```elisp (setq use-package-expand-minimally t) (macroexpand '(use-package eglot :functions eglot-managed-p :config (eglot-managed-p))) ``` Output: ```elisp (progn (require 'eglot nil nil) (eglot-managed-p) t) ``` The other example essentially goes to the same...

Thanks! I think I've figured out where the difference is. It seems the warnings show up with `use-package-expand-minimally` set to `nil` as opposed to `t`. This is the expansion with...

@louietan any chance you could merge this?

FWIW, I cloned this locally and rebased on master (there were no conflicts), and this seems to be working well.

Only somewhat related to this issue and the discussion in #82, but it seems kind of strange (if I'm understanding this correctly) that updating the top crates list could cause...

Here's the hacky workaround I'm using right now to be able to more easily filter gadgets: ```python import re import fileinput pm = r"(?:\+|\-)" reg = r"([a-z]{2,3})" sib = pm...

Regarding my last comment, almost everything in that list is now implemented. The remaining work is: - [ ] Move DEVELOPMENT.md and FEATURES.md to readthedocs - [x] Autogenerate docs on...