VS Code Setup
The files here represent my current VS Code configuration for use with Calva and Joyride.
Note: Some of the code here may well assume you are using the latest version of Calva and Joyride -- I tend to update my extensions regularly and also update my configuration to take advantage of new features.
keybindings.json
is my cross-platform key mappings,settings.json
is my user-level settings (consider this optional -- thecalva/config.edn
file with thecustomREPLCommandSnippets
is the interesting part).
Installation
You can either clone this repo into a temporary directory and then copy either or both of .json
files into your VS Code user configuration directory (overwriting the default keybindings.json
and settings.json
files), or you can manually update your files with whatever bits of my files you like.
Copy (or merge) the calva/config.edn
file's customREPLCommandSnippets
into your
~/.config/calva/config.edn
file for VS Code to find them (requires Calva 2.0.307 or later!).
These customREPLCommandSnippets
provide a number of tap>
evaluations and some Portal UI commands.
Requires Portal 0.33.0 or later
In addition, there are some Joyride scripts (in joyride/scripts
) that you can copy into either your user or workspace Joyride scripts
folder as desired. See the Joyride section below for details.
On a Mac, the VS Code user configuration directory is as shown below:
$ cd ~/Library/Application\ Support/Code/User
On Windows, the VS Code user configuration directory is likely to be:
> cd C:\Users\<username>\AppData\Roaming\Code\User
Portal: Launch and Usage
Requires Portal 0.33.0 or later
Will work both with and without the portal.nrepl/wrap-portal
middleware.
Without the Portal middleware, tap>
'd values are submitted to Portal directly.
With the Portal middleware, all evaluations are tap>
'd to Portal, with the
following caveats:
- Evaluations that involve
portal.api/
functions are nottap>
'd -- this is to prevent those evaluations from disturbing the top-of-window value in Portal. - Evaluations that directly involve
tap>
'ing values suppress some of the default data provided by the middleware and arrange the output so the lasttap>
'd value stays at the top-of-window position:- Any output from the evaluation is
tap>
'd first into Portal, - followed by any test results,
- followed by any exception message,
- followed by the last actual
tap>
'd value itself. This makes it easier to work with data that istap>
'd directly, while still preserving the useful context from the execution as a whole.
- Any output from the evaluation is
For non-tap>
evaluations, the value part of the data can be expanded with
ctrl+alt+space 2
, and the overall data can be expanded with ctrl+alt+space 1
to show the details behind the summary Portal displays by default.
Prerequisites
When starting an instance of Portal, you must ensure that you have the following:
Portal itself must be included as a dependency. This can be done in your user configuration file (deps.edn
or ~/.lein/profiles.clj
for example) or in your project's configuration. If you're using Leiningen, it'll look like this:
:dependencies [[djblue/portal "RELEASE"]]
For deps.edn
, it will be djblue/portal {:mvn/version "RELEASE"}
in :extra-deps
under an alias. If you're using my user deps.edn
file from my dot-clojure
repo, you can just add the :portal
alias to your CLI command to get the latest Portal included.
Launching and Using Portal
Before you launch Portal, you must first start a REPL and connect to it. Once that is up and connected in Calva, you can use the following custom REPL command:
ctrl+alt+space p
-- launch Portal inside VS Code; this uses a customsubmit
listener fortap>
that tracks the most recent value indev/*v
(an atom)
The following additional custom REPL commands are available for Portal:
ctrl+alt+space k
-- clear the Portal historyctrl+alt+space 0
-- cycle the latest value in the Portal history through each of the viewers in turnctrl+alt+space 1
-- expand/collapse the first level of the most recenttap>
'd value in Portal;2
,3
,4
, and5
affect the second thru fifth level respectively
You can also access values stored in portal by dereferencing the portal
object in the dev
namespace like so: @dev/portal
. This object is created automatically by the launch command snippet.
Similarly, @dev/*v
is always the most recent value tap>
'd and the following
custom REPL command lets you manipulate it:
ctrl+alt+space q
-- pops open a REPL input prompt into which you can type arbitrary code which will be evaluated andtap>
'd
If that code includes *v
, it will be automatically replaced with @dev/*v
so you can use the following workflow:
tap>
any value into Portal via any methodctrl+alt+space q
and type some expression involving*v
- press enter to have that evaluated and
tap>
'd - rinse and repeat!
See the custom REPL commands below for convenient tap>
functionality.
tap>
Custom REPL Command Snippets and In addition to the custom REPL commands snippets mentioned above for Portal,
this settings.json
file includes the following:
ctrl+alt+space a
-- add dependencies to the running REPL; sends the enclosing form toclojure.tools.deps.alpha.repl/add-libs
; intended to be used when the cursor is inside a dependencies hash map (i.e., insidedeps.edn
, on a library name, rather than inside its coordinates).ctrl+alt+space c
-- run the current test andtap>
any output.ctrl+alt+space d
-- when a binding inlet
is highlighted (both the symbol and the expression to which it is bound), this creates adef
so the symbol becomes available at the top level: useful for debugging parts of a function insidelet
.ctrl+alt+space e
--tap>
the last exception thrown (*e
)ctrl+alt+space i
-- when a symbol is highlighted, create adef
from it bound to an input value provided by a REPL prompt in Calva: useful for debugging parts of a function (by defining argument values or other symbols).ctrl+alt+space n
--tap>
a hash map of public Vars from the current namespace.ctrl+alt+space t
-- run all the tests in the current namespace andtap>
the result summary.ctrl+alt+space x
-- run all the tests in the "associated" namespace andtap>
the result summary; if the current namespace isfoo.bar
, this will look forfoo.bar-test
orfoo.bar-expectations
.ctrl+alt+space z
-- zap (remove) the current namespace's definitions: occasionally useful for cleaning up REPL state; this unaliases/unmaps all the symbols in the namespace without destroying the namespace itself, leaving it "empty" so you can load the file from disk again so it is fully-sync'd (ctrl+alt+c enter
).
Several of these command snippets require Clojure 1.10 or later (because they assume requiring-resolve
and tap>
) and will fail on earlier versions. Portal supports Clojure 1.10's datafy
and nav
.
Joyride Scripts
The following scripts perform tasks that my old Clover configuration used to provide. You'll need Joyride installed in VS Code and you'll need at least v2.0.277 of Calva since these scripts depend on the recently-added Calva Extension API.
clojuredocs.cljs
-- with a Clojure symbol selected, this will open VS Code's Simple Browser, directly inside VS Code, at the corresponding ClojureDocs page.javadoc.cljs
-- with a Java class name selected, or a Clojure expression selected, this will open VS Code's Simple Browser, directly inside VS Code, at the corresponding (Oracle) JavaDoc page for the class that the selection resolves to. If the underlyingjavadoc-url
function doesn't recognize the class, it produces a Google "I feel lucky" URL that will be opened in an external browser instead (since Simple Browser cannot open Google's site).
Note: both
clojuredocs.cljs
andjavadoc.cljs
assume you have a Clojure nREPL connected in Calva to perform symbol/class resolution!
My keybindings.json
file has key bindings for these that are intended to match (but override) what would be custom REPL command snippet key bindings, to make these Joyride scripts feel more like snippets:
ctrl+alt+space j
-- runsjavadoc.cljs
as a User-level Joyride script.ctrl+alt+space /
-- runsclojuredocs.cljs
as a User-level Joyride script (in my Clover setup, this used to bectrl+; shift+/
, i,e.,?
, butshift+/
would be a bit unwieldy as actrl+alt+space
chord).
Keymap
Other key bindings that you may or may not find useful:
-
ctrl+alt+e ctrl+alt+j
-- join window groups in VS Code (I often use this after starting the REPL or splitting a window). -
ctrl+alt+e ctrl+alt+right
-- move the current window to the next group to the right in VS Code (I often use this after starting the REPL or splitting a window). -
ctrl+t ctrl+f
-- switch focus to the terminal window in VS Code. -
ctrl+t ctrl+t
-- open a terminal window in VS Code. -
ctrl+alt+l ctrl+alt+l
-- convert the selection/word at the cursor to lowercase. -
ctrl+alt+u ctrl+alt+u
-- convert the selection/word at the cursor to uppercase. -
ctrl+alt+k ctrl+alt+t
-- toggle between Clojure implementation and test files. -
alt+home
--paredit.openList
for Calva to avoidctrl+home
(which should becursorTop
!). -
ctrl+j
-- join lines (this is the default on macOS but not Windows).
If you use Atlassian/Jira/BitBucket:
ctrl+alt+a ctrl+alt+b
-- switch to BitBucket PRs.ctrl+alt+a ctrl+alt+j
-- switch to Jira issues.