stumpwm/vlime.lisp @ a65fd2691c94 default tip
More
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Mon, 03 Nov 2025 14:55:17 -0500 |
| parents | 4673e928c08e |
| children | (none) |
(in-package :stumpwm-user) (defcommand vlime () () (load "~/src/dotfiles/vim/bundle/vlime/lisp/start-vlime.lisp") (message "Started VLIME")) (defcommand vlime-port (port) ((:integer "Port: ")) "Start VLIME on the given port. Good for bootstrapping a VLIME connection when you accidentally started a VLIME instance on another port that you don't want to mess with. " (funcall (read-from-string "vlime-loader::run") port) (message "Started VLIME"))