Navigating Clojure Namespaces
Browse or find a namespace in the current project
Keybindings | Description |
---|---|
, h n |
Browse namespace contents |
, h N |
Browse all namespaces content |
, g n |
Find file for the given namespace |
Browse namespaces allows you to navigate through just the definitions in a namespace (def
, defn
) and view their documentation (doc strings).
Confirm function operation
Find namespace will open the file for a selected namespace
REPL buffer cider commands
,
in Evil insert mode in the REPL buffer will bring up the REPL command menu
Command | Description |
---|---|
browse-ns |
Browse namespace |
ns |
Switch to namespace (lists known namespaces) |
Using code to change the namespace
in-ns
function will set the namespace for the REPL. If that namespace does not exist, then the namespace is created in the current REPL.