This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-11-03
Channels
- # announcements (35)
- # aws (20)
- # babashka (4)
- # beginners (88)
- # cider (9)
- # clara (1)
- # clj-kondo (6)
- # cljsrn (3)
- # clojure (107)
- # clojure-dev (7)
- # clojure-europe (99)
- # clojure-nl (3)
- # clojure-spec (9)
- # clojure-uk (2)
- # clojurescript (28)
- # core-async (53)
- # cursive (11)
- # datascript (1)
- # datomic (2)
- # emacs (20)
- # fulcro (3)
- # graalvm (4)
- # holy-lambda (18)
- # jobs (1)
- # kaocha (7)
- # leiningen (2)
- # lsp (25)
- # luminus (1)
- # membrane-term (52)
- # missionary (8)
- # nextjournal (19)
- # off-topic (16)
- # other-languages (3)
- # podcasts-discuss (2)
- # polylith (23)
- # re-frame (4)
- # reclojure (6)
- # remote-jobs (1)
- # rewrite-clj (36)
- # ring (1)
- # sci (10)
- # shadow-cljs (7)
- # spacemacs (5)
- # sql (20)
- # uncomplicate (1)
- # vscode (3)
- # xtdb (27)
For those using vspacecode
, is there a way to define a new top-level WhichKey menu? I’ve tried the following without success:
👀 1
"vspacecode.bindingOverrides": [
{
"key": "A",
"name": "App...",
"type": "bindings",
"bindings": [
{
"key": "s",
"name": "Open Settings (JSON)",
"type": "command",
"command":"workbench.action.openSettingsJson",
}
]
}
Ok, trial and error got it working (based on someone’s gist):
{
"keys": ["A"],
"name": "App",
"type": "bindings",
"bindings":[
{
"key": "s",
"name": "Open Settings (JSON)",
"type": "command",
"command":"workbench.action.openSettingsJson",
}
]
},
I’m not sure whey the keys needs to be an array here. I didn’t notice that in any examples.🙏 1