diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-05-04 15:03:55 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-05-04 15:03:55 -0700 |
commit | ee374553f2ba385157eec9a816cf9b023fbfb18a (patch) | |
tree | 2972641f3de868f727f4210f97d461b4f4e1a2b5 /source/blog/2014-12-14-speeding-up-emacs-with-emacsclient.md | |
parent | 301679861a2440a10c9eac746cec86459f445ef9 (diff) | |
download | my_new_personal_website-ee374553f2ba385157eec9a816cf9b023fbfb18a.tar.xz my_new_personal_website-ee374553f2ba385157eec9a816cf9b023fbfb18a.zip |
process post metadata
Diffstat (limited to '')
-rw-r--r-- | source/blog/2014-12-14-speeding-up-emacs-with-emacsclient.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blog/2014-12-14-speeding-up-emacs-with-emacsclient.md b/source/blog/2014-12-14-speeding-up-emacs-with-emacsclient.md index f82f63cf..7d01cc9f 100644 --- a/source/blog/2014-12-14-speeding-up-emacs-with-emacsclient.md +++ b/source/blog/2014-12-14-speeding-up-emacs-with-emacsclient.md @@ -1,9 +1,7 @@ --- -layout: post title: "Speeding up Emacs with emacsclient" date: 2014-12-14 10:06:02 -0800 -comments: true -categories: +date-display: December 14, 2014 --- 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. @@ -13,7 +11,7 @@ This problem can be solved by "using that same Emacs", i.e., running Emacs in se Note that `emacsclient` requires a filename, so my script prompts for one if `$1` is empty. -``` bash emc +``` bash #!/usr/bin/env bash if [[ -n $1 ]]; then file=$1 |