Fork me on GitHub
#calva
<
2022-06-30
>
armed09:06:27

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?

pez09:06:43

No particular reason other than we haven't tested anything newer. It should work with latest, I think.

👍 1
bringe03:07:08

I created an issue to update cider-nrepl and nrepl jack-in dep versions.

🙏 1
JC13:06:15

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?

Byron Clark16:06:25

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'"
    }

Byron Clark16:06:38

Only addition from the default is the !vim.active

Byron Clark16:06:29

But it also disables using backspace for the paredit option, so you could delete the keybinding as well.

JC16:06:22

Thank you so much @U0394DH0S3W!!!

pez20:06:41

Our very own @domagala.lukas delivered such an excellent presentation at #clojured.

❤️ 3
🎉 2
bringe03:07:03

I’m guessing a video will be uploaded?! 😃

pez06:07:46

Yes. It was recorded. No ETA on the video, though.

👍 1
dpsutton23:06:20

does calva have a keybinding for running some version of apropos? (either orchard or just regular clojure)

bringe03:07:37

It does not.

pez07:07:22

It should have, me thinks! 😃 Issue welcome, @U11BV7MTK.

dpsutton21:07:50

I’ll open it now. thanks @U0ETXRFEW