# HG changeset patch # User Augie Fackler # Date 1480444445 18000 # Node ID 13c11127a79e2c7fb410afc2d469f229d2ccfcdf # Parent b460b464f9d2857beede1a74e581c38b24c14293 textmate.el: make sure hg is run with HGPLAIN Otherwise over ssh (with tramp) with pager enabled things get confused. diff --git a/.elisp/textmate.el b/.elisp/textmate.el --- 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)) )))