Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # calva - https://calva.io - [[calva refactoring]] - [[calva debugger]] <code vim> nmap cqp :call VSCodeNotify('calva.jackIn')<CR> nmap cqq :call VSCodeNotify('calva.disconnect')<CR> nmap cpr :call VSCodeNotify('calva.loadFile')<CR> nmap cpR :call VSCodeNotify('calva.loadNamespace')<CR> nmap cpp :call VSCodeNotify('calva.evaluateSelection')<CR> nmap cqc :call VSCodeNotify('calva.evalCurrentFormInREPLWindow')<CR> </code> ## vscode settings.json <code json> { "calva.replConnectSequences": [ { "projectType": "deps.edn", "afterCLJReplJackInCode": "(user/r)", "name": "CALVA-DEV-REPL", "cljsType": "none", "menuSelections": { "cljAliases": [ "dev", // "reveal-nrepl-middleware" ] } } ], "files.exclude": { "**/.git": false }, "calva.projectRootsSearchExclude": [ "bases", "components" ], "calva.prettyPrintingOptions": { "enabled": true, "printEngine": "pprint", "width": 40 }, "calva.showDocstringInParameterHelp": true, "workbench.colorCustomizations": { // "calva.inlineErrorForegroundColor": "#ff0000", // "calva.inlineForegroundColor": "#ff9000", "tab.activeBorder": "#2acd4a", "tab.unfocusedActiveBorder": "#ffffff", "sash.hoverBorder": "#90B4FE", "titleBar.activeBackground": "#DB9550", "titleBar.activeForeground": "#131722", "titleBar.inactiveBackground": "#db9550d5", "titleBar.inactiveForeground": "#13172299" }, } </code> open/calva.txt Last modified: 2024/10/05 06:15by 127.0.0.1