Mercurial > dotfiles
diff .elisp/textmate.el @ 404:577c824c2288
textmate.el: use `hg locate` instead of `hg manifest`
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 01 Aug 2016 09:13:10 -0400 |
parents | ecb85d3ba960 |
children | b460b464f9d2 |
line wrap: on
line diff
--- a/.elisp/textmate.el +++ b/.elisp/textmate.el @@ -393,7 +393,7 @@ specific type of file." (concat "cd " root " && git ls-files")) "\n" t)) ((string= type "hg") (split-string (shell-command-to-string - (concat "cd " root " && hg manifest")) "\n" t)) + (concat "cd " root " && hg locate 'set:added() or modified() or clean()'")) "\n" t)) ((string= type "unknown") (textmate-cached-project-files-find root)) )))