Skip to content

Instantly share code, notes, and snippets.

@nyuichi
Last active December 10, 2015 12:18
Show Gist options
  • Select an option

  • Save nyuichi/4432886 to your computer and use it in GitHub Desktop.

Select an option

Save nyuichi/4432886 to your computer and use it in GitHub Desktop.
(defslime-repl-shortcut nil ("develop" "dev")
(:handler (lambda ()
(interactive)
(insert "(repl-utilities:dev " (slime-read-system-name) ")")
(slime-repl-send-input t)))
(:one-liner "Load and swap to system with repl-utilities stuff."))
(defslime-repl-shortcut nil ("bring")
(:handler (lambda ()
(interactive)
(insert "(repl-utilities:bring " (slime-read-package-name "Package: ") ")")
(slime-repl-send-input t)))
(:one-liner "bring things from package"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment