This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun emacs-with-nyxt-sly-connect (host port) | |
"Connect Sly to HOST and PORT ignoring version mismatches." | |
(sly-connect host port) | |
(sleep-for 1)) | |
(defvar emacs-with-nyxt-sly-nyxt-delay 0.3) | |
(defun emacs-with-nyxt-start-and-connect-to-nyxt (&optional no-maximize) | |
"Start Nyxt with swank capabilities. Optionally skip window maximization with NO-MAXIMIZE." | |
(interactive) | |
(async-shell-command (format "nyxt -e \"(nyxt-user::start-slynk)\"")) |