changeset 438:13c11127a79e

textmate.el: make sure hg is run with HGPLAIN Otherwise over ssh (with tramp) with pager enabled things get confused.
author Augie Fackler <raf@durin42.com>
date Tue, 29 Nov 2016 13:34:05 -0500
parents b460b464f9d2
children 2325dea339ca
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
@@ -395,7 +395,7 @@ specific type of file."
           ((string= type "hg")
            (split-string
             (shell-command-to-string
-             "hg locate 'set:not(ignored() or removed() or unknown())'")
+             "HGPLAIN=1 hg locate 'set:not(ignored() or removed() or unknown())'")
             "\n" t))
           ((string= type "unknown") (textmate-cached-project-files-find root))
   )))