changeset 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 5c60aa185a97
children bb7120cdd8ac
files .elisp/textmate.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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))
   )))