Shammer's Philosophy

My private adversaria

2014-11-21から1日間の記事一覧

Emacs Server configuration

Emacs can be configured as server mode. Server mode helps to collect all process to view or edit text files by emacsclient. Add following configuration to init.el (require 'server) (unless (server-running-p) (server-start)) Add emacsclient…