-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
instead of VS Code Sync.
See https://code.visualstudio.com/docs/editor/settings-sync
Files location is ~/Library/Application\ Support/Code/User/
My current keybindings.json
:
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+alt+f",
"command": "paredit.forwardSexp",
"when": "calva:cursorAfterComment && editorLangId == 'clojure' || calva:keybindingsEnabled && editorTextFocus && !calva:cursorInComment && !config.calva.paredit.hijackVSCodeDefaults && editorLangId == 'clojure' && paredit:keyMap =~ /original|strict/"
},
{
"key": "ctrl+alt+b",
"command": "paredit.backwardSexp",
"when": "calva:cursorBeforeComment && editorLangId == 'clojure' || calva:keybindingsEnabled && editorTextFocus && !calva:cursorInComment && !config.calva.paredit.hijackVSCodeDefaults && editorLangId == 'clojure' && paredit:keyMap =~ /original|strict/"
},
{
"key": "ctrl+alt+d",
"command": "paredit.forwardDownSexp",
"when": "calva:keybindingsEnabled && editorTextFocus && editorLangId == 'clojure' && paredit:keyMap =~ /original|strict/"
},
{
"key": "ctrl+alt+u",
"command": "paredit.backwardUpSexp",
"when": "calva:keybindingsEnabled && editorTextFocus && editorLangId == 'clojure' && paredit:keyMap =~ /original|strict/"
},
{
"key": "ctrl+alt+k",
"command": "paredit.killSexpForward",
"when": "calva:keybindingsEnabled && editorTextFocus && editorLangId == 'clojure' && paredit:keyMap =~ /original|strict/"
},
{
"key": "ctrl+u ctrl+alt+k",
"command": "paredit.killListForward",
"when": "calva:keybindingsEnabled && editorTextFocus && editorLangId == 'clojure' && paredit:keyMap =~ /original|strict/"
}
]
Can I keep it in "sync" with my paredit settings for Emacs?
Metadata
Metadata
Assignees
Labels
No labels