Created
December 1, 2013 18:52
-
-
Save sri/7739253 to your computer and use it in GitHub Desktop.
emacsclient
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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