summaryrefslogtreecommitdiff
path: root/.ycm_extra_conf.py
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-02-12 13:53:59 -0600
committerMatt A. Tobin <email@mattatobin.com>2022-02-12 13:53:59 -0600
commitc054e324210895e7e2c5b3e84437cba43f201ec8 (patch)
tree00735055ed5ee588f71e147c5ae27363349f1687 /.ycm_extra_conf.py
parent5da550a67c876bf06690439192db5bef2c54cb20 (diff)
downloadpalemoon-gre-c054e324210895e7e2c5b3e84437cba43f201ec8.tar.gz
Prep for GRE
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r--.ycm_extra_conf.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py
deleted file mode 100644
index 332911ab7..000000000
--- a/.ycm_extra_conf.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-import imp
-import os
-from StringIO import StringIO
-import shlex
-
-path = os.path.join(os.path.dirname(__file__), 'mach')
-
-if not os.path.exists(path):
- path = os.path.join(os.path.dirname(__file__), 'config.status')
- config = imp.load_module('_buildconfig', open(path), path, ('', 'r', imp.PY_SOURCE))
- path = os.path.join(config.topsrcdir, 'mach')
-mach_module = imp.load_module('_mach', open(path), path, ('', 'r', imp.PY_SOURCE))
-
-def FlagsForFile(filename):
- mach = mach_module.get_mach()
- out = StringIO()
- out.encoding = None
- mach.run(['compileflags', filename], stdout=out, stderr=out)
-
- return {
- 'flags': shlex.split(out.getvalue()),
- 'do_cache': True
- }