================ @@ -0,0 +1,84 @@ +//===-- ConnectionConPTY.cpp ----------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "lldb/Host/windows/ConnectionConPTYWindows.h" +#include "lldb/Utility/Status.h" + +using namespace lldb; +using namespace lldb_private; + +/// Strips the ConPTY initialization sequences that Windows unconditionally +/// emits when a process is first attached to a pseudo console. ---------------- Nerixyz wrote:
Random thought: Should we ask the Windows Terminal maintainers about this? Feels like there should be an option to omit these characters. https://github.com/llvm/llvm-project/pull/182302 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
