jaide (formerly eccentric-j)
jaide (formerly eccentric-j)
I know I'm coming in a bit late here and I hope that's not a problem. A coworker just asked why I used ^:private instead of defn- and my rationale...
I sort of found a solution. It works but it's not very clean, right now it is a modified version of Backbone 1.1.2's History.navigate method so if the library is...
Ran into this myself on several occasions. Worth mentioning is that not even `js->clj` works on React events or native events because they are not plain objects, they are specific...
I think you're right, for whatever reason the role of prop->key was not jumping out at me. Was able to get it working with: ```clojure (defn key->prop [x] (cond (=...
After more trial and error I found the case: I didn't install clj-kondo on my home computer. Once I did this problem stopped happening. That said, maybe the error message...
I'd like to use which-key to describe some prefix groups like f for File operations. What would the config look like to only describe that group? EDIT: Figured it out:...
The README.md is generated by running `make README.md`. The original src is in `linum-relative.el` around line 68 https://github.com/coldnew/linum-relative/blob/master/linum-relative.el#L68. Also, the value used in the customization option is actually `display-line-numbers-mode` https://github.com/coldnew/linum-relative/blob/master/linum-relative.el#L137...
@bloodyowl I would very much be in favor of that. My use case in case there's a better way ```rescript module Icon = { @react.component let make = (~icon: option=?)...
> and must contain whichKeyVisible which limits this shortcut to be only applicable when the which-key menu is visible I think I missed that caveat. That said is there a...
Found one solution: ```jsonc { "key": "shift+2", "command": "extension.multiCommand.execute", "args": { "sequence": [ "vspacecode.space", { "command": "whichkey.triggerKey", "args": "@" }, ], }, "when": "!whichKeyVisible && editorLangId == 'magit' && vim.mode...