diff options
author | Alan Pearce | 2017-04-24 19:24:44 +0200 |
---|---|---|
committer | Alan Pearce | 2017-04-24 19:24:44 +0200 |
commit | 7f7087d808a6e441e6c3aa36aa8328e93f63d256 (patch) | |
tree | a2970082ab396070c268977087ad1447ae760497 | |
parent | cc70e91eeeefc70bced1e1e126e3b0a2875e7899 (diff) | |
download | nixfiles-7f7087d808a6e441e6c3aa36aa8328e93f63d256.tar.lz nixfiles-7f7087d808a6e441e6c3aa36aa8328e93f63d256.tar.zst nixfiles-7f7087d808a6e441e6c3aa36aa8328e93f63d256.zip |
Emacs: Fix switch-to-dotfiles issue
-rw-r--r-- | emacs/.emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index f5737ebd..58300552 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -432,7 +432,7 @@ configuration with crux.el #+BEGIN_SRC emacs-lisp (defun switch-to-dotfiles () (interactive) - (projectile-switch-project-by-name (split-string (shell-command-to-string "ghq list --full-path dotfiles")))) + (projectile-switch-project-by-name (car (split-string (shell-command-to-string "ghq list --full-path dotfiles"))))) #+END_SRC ** The Silver Searcher |