This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-30
Channels
- # announcements (40)
- # babashka (41)
- # beginners (32)
- # calva (15)
- # clara (8)
- # clj-kondo (14)
- # cljs-dev (30)
- # clojure (37)
- # clojure-dev (8)
- # clojure-europe (21)
- # clojure-norway (21)
- # clojure-uk (4)
- # clojured (3)
- # clojurescript (4)
- # community-development (10)
- # core-async (13)
- # cursive (23)
- # datomic (15)
- # emacs (9)
- # fulcro (3)
- # google-cloud (4)
- # graphql (24)
- # gratitude (2)
- # holy-lambda (4)
- # honeysql (5)
- # hyperfiddle (9)
- # keechma (1)
- # klipse (5)
- # lsp (23)
- # malli (4)
- # missionary (32)
- # pathom (28)
- # re-frame (2)
- # reagent (40)
- # reitit (17)
- # releases (2)
- # remote-jobs (1)
- # shadow-cljs (25)
- # specter (3)
- # vim (19)
- # xtdb (41)
Hi, everyone. Is there any particular reason to use cider-nrepl version 0.27.4? Can I override repl command to use the latest one?
No particular reason other than we haven't tested anything newer. It should work with latest, I think.
I'm using Calva with VIM mode. When I enter command mode or when I search using /
, pressing backspace
deletes in my code instead of what's in my command bar. Has anyone else run into this? Does anyone have a vscode setting to get around this?
Updating the backspace keybinding like this seems to help:
{
"key": "backspace",
"command": "paredit.deleteBackward",
"when": "!vim.active && calva:keybindingsEnabled && editorTextFocus && !calva:cursorInComment && !editorHasMultipleSelections && !editorReadOnly && editorLangId == 'clojure' && paredit:keyMap == 'strict'"
},
{
"key": "backspace",
"command": "-paredit.deleteBackward",
"when": "calva:keybindingsEnabled && editorTextFocus && !calva:cursorInComment && !editorHasMultipleSelections && !editorReadOnly && editorLangId == 'clojure' && paredit:keyMap == 'strict'"
}
Only addition from the default is the !vim.active
But it also disables using backspace for the paredit option, so you could delete the keybinding as well.
Thank you so much @U0394DH0S3W!!!
Our very own @domagala.lukas delivered such an excellent presentation at #clojured.
does calva have a keybinding for running some version of apropos
? (either orchard or just regular clojure)
It should have, me thinks! 😃 Issue welcome, @U11BV7MTK.
I’ll open it now. thanks @U0ETXRFEW