File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1562
1562
"enablement" : " editorLangId == clojure"
1563
1563
},
1564
1564
{
1565
- "category" : " Calva" ,
1566
- "command" : " paredit .selectCurrentForm" ,
1565
+ "category" : " Calva Paredit " ,
1566
+ "command" : " calva .selectCurrentForm" , // legacy id for backward compat
1567
1567
"title" : " Select Current Form" ,
1568
1568
"enablement" : " editorLangId == clojure"
1569
1569
},
2151
2151
"when" : " calva:keybindingsEnabled"
2152
2152
},
2153
2153
{
2154
- "command" : " calva.selectCurrentForm" ,
2154
+ "command" : " calva.selectCurrentForm" , // legacy id for backward compat
2155
2155
"key" : " ctrl+alt+c ctrl+s" ,
2156
2156
"when" : " calva:keybindingsEnabled && editorLangId == clojure && editorTextFocus"
2157
2157
},
3078
3078
},
3079
3079
{
3080
3080
"when" : " editorLangId == clojure" ,
3081
- "command" : " calva.selectCurrentForm" ,
3081
+ "command" : " calva.selectCurrentForm" , // legacy id for backward compat
3082
3082
"group" : " calva/a-structural-editing"
3083
3083
},
3084
3084
{
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ const pareditCommands: PareditCommand[] = [
115
115
116
116
// SELECTING
117
117
{
118
- command : 'paredit .selectCurrentForm' ,
118
+ command : 'calva .selectCurrentForm' , // legacy command id for backward compat
119
119
handler : ( doc : EditableDocument ) => {
120
120
const isMulti = multiCursorEnabled ( ) ;
121
121
handlers . selectCurrentForm ( doc , isMulti ) ;
You can’t perform that action at this time.
0 commit comments