emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
gammarray 2020-10-07T00:04:58.054700Z

@eric.d.scott I'm not sure if this helps, but here's the eshell alias I use for cd'ing to a docker container with docker-tramp:

alias dcd cd /docker:${docker ps -qf "name=$1"}:~/
You probably want to make sure you're using the docker container's absolute file path after the : in the format /docker:user@container:/absolute/path/to/file

2020-10-10T17:17:10.056300Z

Thanks!

gammarray 2020-10-07T00:05:43.055500Z

in the eshell alias above, you can cd into a container named example with the command dcd example