1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
layout: post
title: "Speeding up Emacs with emacsclient"
date: 2014-12-14 10:06:02 -0800
comments: true
categories:
---
Emacs is notorious for its loading time. For me, this is especially annoying when I'm editing LaTeX files — AUCTeX takes about five seconds to load, and once I exit Emacs (especially after a quick edit), all that work is wasted, and next time I want to do some quick editing with that same LaTeX file — sorry, another five seconds.
This problem can be solved by "using that same Emacs", i.e., running Emacs in server mode, then connecting to the server via `emacsclient`. Below is my script, which I call `emc`, to make `emacsclient` more user-friendly. `emc` opens a file (given as `$1`) on the server, launching one on its way if none is detected. Note that I used `-cqt` for `emacsclient`. The `-c` option is `--create-frame`, i.e., create a new frame (in the current tty, for instance) instead of using the existing frame (in another tty, for instance); this allows for multiple frames accross different ttys. The `-q` option is for `--quiet`, suppressing messages like "Waiting for Emacs..." The `-t` option is for `--tty`, or equivalently, the familiar `-nw` option of `emacs`. Note that `emacsclient` requires a filename, so my script prompts for one if `$1` is empty.
``` bash emc
#!/usr/bin/env bash
if [[ -n $1 ]]; then
file=$1
else
while [[ -z ${file} ]]; do
read -p 'filename: ' file
done
fi
emacsclient -cqt "${file}" 2>/dev/null || { emacs --daemon; emacsclient -cqt "${file}"; }
```
Note that using `emacsclient` has the additional benefit that the same buffer is simultaneously updated accross different ttys (See screenshot, where I opened the current post in two different ttys). This way, you won't face the nasty "file changed on disk" problem when you accidentally edited the same file in another tty session.
![screen shot of multiple copies of the same buffer](http://i.imgur.com/9KxEWKq.png)
By the way, remember to re-configure your other programs that uses an external editor. For instance, change `$EDITOR` to `emacsclient -cqt` in your `env`, and `core.editor` to `emacsclient -cqt` in your `~/.gitconfig`.
I just started using `emacsclient`, so the above script might be buggy in certain edge cases. I'll report when I run into issues.
|