From e1e7b6f381a9a5640605fdc4a3e78eb01f8fc8b9 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Mon, 18 Nov 2019 15:15:10 -0800 Subject: [PATCH] [clang-include-fixer] Suppress cmd prompt from Vim on Windows Copied from the clang-format.py editor integration. Reviewers: bkramer Differential Revision: https://reviews.llvm.org/D70518 --- .../clang-include-fixer/tool/clang-include-fixer.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/clang-tools-extra/clang-include-fixer/tool/clang-include-fixer.py b/clang-tools-extra/clang-include-fixer/tool/clang-include-fixer.py index 4c38f71..df05101 100644 --- a/clang-tools-extra/clang-include-fixer/tool/clang-include-fixer.py +++ b/clang-tools-extra/clang-include-fixer/tool/clang-include-fixer.py @@ -85,9 +85,16 @@ def GetUserSelection(message, headers, maximum_suggested_headers): def execute(command, text): + # Avoid flashing a cmd prompt on Windows. + startupinfo = None + if sys.platform.startswith('win32'): + startupinfo = subprocess.STARTUPINFO() + startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW + startupinfo.wShowWindow = subprocess.SW_HIDE + p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, - stdin=subprocess.PIPE) + stdin=subprocess.PIPE, startupinfo=startupinfo) return p.communicate(input=text) -- 2.7.4