From 4d195ed4b2879954190e6cbbb755eda7dd13abb9 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sun, 2 Nov 2014 21:27:59 +0000 Subject: [PATCH] clang-format: permit setting the path to clang in vimrc If g:clang_format_path is set in the vimrc, that path will take precedence over the hard coded path (which is reliant on the PATH environment variable). This provides an easy mechanism for switching the selected clang-format binary during development. llvm-svn: 221108 --- clang/tools/clang-format/clang-format.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clang/tools/clang-format/clang-format.py b/clang/tools/clang-format/clang-format.py index 3bb89e0..0349356 100644 --- a/clang/tools/clang-format/clang-format.py +++ b/clang/tools/clang-format/clang-format.py @@ -23,8 +23,11 @@ import subprocess import sys import vim +# set g:clang_format_path to the path to clang-format if it is not on the path # Change this to the full path if clang-format is not on the path. binary = 'clang-format' +if vim.eval('exists("g:clang_format_path")'): + binary = vim.eval('g:clang_format_path') # Change this to format according to other formatting styles. See the output of # 'clang-format --help' for a list of supported styles. The default looks for -- 2.7.4