Skip to content

cognitect-labs/aquamacs-support

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is this

A quick-start Clojure development environment for use with Aquamacs.

Setup

  • Install Aquamacs
  • Copy the .el files in this repository to ~/Library/Preferences/Aquamacs\ Emacs/
    • TODO - How to create prefs directory? Launch/Close Aquamacs or mkdir?
    • TODO - Expand on instructions here with Github release zip, mkdir, cp.
  • Launch Aquamacs

Using Clojure

To begin with Clojure:

  • Launch Aquamacs.app
  • Create a new file, or open a file, with the extension .clj, .cljc, .cljs or .edn
  • Press Control-z
    • To use a specific clojure command, type Control-c then Control-z
      • Use up arrow and down arrow keys to browse through prior commands used.
      • Option-R to search for an item in history that matches the entered text.
  • Your window will split, and a Clojure REPL will appear with user=>

Code can be sent from a file to the REPL with Clojure shortcuts, or entered directly in the REPL.

.dir-locals.el

A file named .dir-locals.el can be placed anywhere upstream of the file you run clojure on.

((clojure-mode (clj-repl-command "clojure -A:dev"
                                 "clojure -X:socketserver :port 1337"
				                 "java -jar clojure.jar"
				                 "clojure")))

When using Control-c Control-z with this .dir-locals.el you will be able to:

  • Press enter to immediately use the first option clj -A:test
  • Browse other options with up and down arrow keys.
    • All previously used REPL launching commands are available as options after browsing past the last item in your .dir-locals.el
  • Search for a command in your .dir-locals.el and command history with Option-r

Control-z will automatically launch a REPL with the first defined command in the loaded .dir-locals.el

.dir-locals.el Location

If you C-c C-z on ~/my-project/src/killer-app.clj then the command will look for settings in the following order, and pick the first one found:

  • ~/my-project/src/.dir-locals.el
  • ~/my-project/.dir-locals.el
  • ~/.dir-locals.el
  • /Users/.dir-locals.el
  • /.dir-locals.el

It is recommended to keep a single .dir-locals.el in the root directory of your project. A master .dir-locals.el can be placed in a directory containing your project(s), and it will be used if no other .dir-locals.el is found closer to the starting path.

If the project already has a .dir-locals.el that you can not change (perhaps it's under version control), then you can place your user settings in .dir-locals-2.el.

REPL executable path

Any program that uses stdin/stdout/stderr can be launched as a REPL.

The path which is used to launched the executable from is the first valid option:

  1. The nearest direct parent directory with a deps.edn file.
  2. The nearest direct parent directory with a .dir-locals.el file.
  3. The PATH of your default shell.

Project defining files

Aquamacs-support overrides clojure-mode's support for different project-root defining files.

Project-defining files can be added using .dir-locals.el by setting the clj-build-tool-files var to the names of the files which may determine a project root:

((clojure-mode (clj-repl-command "clojure -A:dev"
                                 "clojure -X:socketserver :port 1337"
				                 "java -jar clojure.jar"
				                 "clojure")
               (clj-build-tool-files "deps.edn" 
                                     "build.boot"))

These files will be searched for, up the directory tree, in the provided order.

REPL Environment Variables

Environment variables can be set for the REPL process by adding process-env to your .dir-locals.el. The value is an Association List

((clojure-mode (clj-repl-command "clojure -A:dev"
                                 "clojure -X:socketserver :port 1337"
				                 "java -jar clojure.jar"
				                 "clojure")
               (process-env ("JAVA_HOME" . "jdk-install-dir)
                            ("AWS_PROFILE" . "Production"))))

Features

Hotkeys

TODO: Replace emacs function name with simple description

Paredit

Hotkey Function
Option-[ paredit-wrap-square
Option-{ paredit-wrap-curly
Option-( paredit-wrap-round
Option-<right> forward-sexp
Option-<left> backward-sexp
Option-<up> backward-up-list
Option-<down> down-list
<A-return> paredit-newline
Option-q paredit-reindent-defun
Control-<left> paredit-forward-barf-sexp
Control-Option-<right> paredit-backward-barf-sexp
Control-<right> paredit-forward-slurp-sexp
Control-Option-<left> paredit-backward-slurp-sexp
Option-Shift-s paredit-split-sexp
Option-s paredit-splice-sexp
Control-k paredit-kill
Control-Shift-k paredit-kill-backward

Clojure

Hotkey Function
Control-z Start REPL with first .dir-locals value, or clojure"
Control-c Control-z Start REPL, prompt for command
Control-: clojure-toggle-keyword-string
Control-c <space> clojure-align
Control-Option-x lisp-eval-defun
Control-c Control-e lisp-eval-defun
Control-x Control-e lisp-eval-last-sexp
Control-c Control-e lisp-eval-last-sexp
Control-c Control-r lisp-eval-region
Control-Option-q indent-sexp

Currently not operational or unexplored

Additional code needed to enable:

| Control-c Control-a | lisp-show-arglist | | Control-c Control-c | lisp-compile-defun | | Control-c Control-d | lisp-describe-sym | | Control-c Control-f | lisp-show-function-documentation | | Control-c Control-v | lisp-show-variable-documentation |

Unexplored:

| Control-c Control-p | lisp-eval-paragraph | | Control-c Control-k | lisp-compile-file | | Control-c Control-l | lisp-load-file | | Control-c Control-n | lisp-eval-form-and-next |

Package Sources

About

support scripts and docs for use of Aquamacs with Clojure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published