Skip to content

Instantly share code, notes, and snippets.

@sri
Created December 1, 2013 18:52
Show Gist options
  • Save sri/7739253 to your computer and use it in GitHub Desktop.
Save sri/7739253 to your computer and use it in GitHub Desktop.
emacsclient
#!/bin/bash
# Open a new Emacs client frame in current tty.
# Set scratch buffer's default directory to where
# the client was launched from. And switch to scratch
# buffer.
dir=`pwd`
emacsclient -t --eval \
"(with-current-buffer (get-buffer-create \"*scratch*\") (cd \"$dir\") (switch-to-buffer (current-buffer)))"
==================
# Alternatively, you can open dired from the client's launch directory.
emacsclient -t .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment