Ver código fonte

(Kind of) fix ctags execution.

I should really find a better way to do tag generation.
Josh Bicking 6 anos atrás
pai
commit
41ba20a657
2 arquivos alterados com 2 adições e 3 exclusões
  1. 1 2
      README.md
  2. 1 1
      emacs.d/init.el

+ 1 - 2
README.md

@@ -1,11 +1,10 @@
 # Josh's Dotfiles
 
-Covers zsh, [neo]vim, i3, and (mostly) emacs. Mostly emacs.
+Covers zsh, [neo]vim, i3, and emacs. Mostly emacs.
 
 ## Usage
 - Clone the repo with the `--recursive` flag.
 - Run `./makedots.sh` in the cloned repo.
 
 ## TODO
-- [ ] Learn how to use auctex.
 - [ ] Find a better way to keep my custom ctags executable.

+ 1 - 1
emacs.d/init.el

@@ -108,7 +108,7 @@
   "Create tags file."
   (interactive "DDirectory: ")
   (shell-command
-   (format "\"%s\" -f %s/TAGS -e -R %s"
+   (format "\"%s\" -f \"%s/TAGS\" -e -R %s"
            tags-generator (directory-file-name dir-name) (directory-file-name dir-name))))
 
 (add-to-list 'load-path (expand-file-name "packages" user-emacs-directory))