Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save telmich/af2dfbdb09d66ad17daa90cc977ddc9f to your computer and use it in GitHub Desktop.
Save telmich/af2dfbdb09d66ad17daa90cc977ddc9f to your computer and use it in GitHub Desktop.
(when (string= "mainemacs" (frame-parameter (selected-frame) 'name))
(server-start)
'(
(add-to-list 'load-path "~/.emacs.d/lisp")
(require 'edit-server)
(edit-server-start)
)
)
@telmich
Copy link
Author

telmich commented Jul 7, 2016

This works syntactically

(when (string= "mainemacs" (frame-parameter (selected-frame) 'name))
(server-start)
'((add-to-list 'load-path "~/.emacs.d/lisp")
(require 'edit-server)
(edit-server-start) )
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment