Improvements to clang-format integrations.

This adds an emacs editor integration (thanks to Ami Fischman). Also
pulls out the style into a variable for the vi integration and just
uses clang-formats defaults style in clang-format-diff.py.

llvm-svn: 179098
This commit is contained in:
Daniel Jasper
2013-04-09 15:23:04 +00:00
parent c2413f59e4
commit e4549a2391
3 changed files with 58 additions and 6 deletions

View File

@@ -63,9 +63,10 @@ def formatRange(r, style):
offset, length = getOffsetLength(filename, line_number, line_count)
with open(filename, 'r') as f:
text = f.read()
p = subprocess.Popen([binary, '-offset', str(offset), '-length', str(length),
'-style', style],
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
command = [binary, '-offset', str(offset), '-length', str(length)]
if style:
command.append('-style', style)
p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
stdin=subprocess.PIPE)
stdout, stderr = p.communicate(input=text)
if stderr:
@@ -84,8 +85,7 @@ def main():
'Reformat changed lines in diff')
parser.add_argument('-p', default=1,
help='strip the smallest prefix containing P slashes')
parser.add_argument('-style', default='LLVM',
help='formatting style to apply (LLVM, Google)')
parser.add_argument('-style', help='formatting style to apply (LLVM, Google)')
args = parser.parse_args()
filename = None