# HG changeset patch # User Augie Fackler # Date 1470057190 14400 # Node ID 577c824c228801aa8fea7a31b6b9cd7c1e57c7cb # Parent 5c60aa185a97cf1ae4850f664a7a9f0fb1ef60f8 textmate.el: use `hg locate` instead of `hg manifest` diff --git a/.elisp/textmate.el b/.elisp/textmate.el --- 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)) )))