1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-25 21:16:38 +03:00

Use different variable for pipe command in/out text

This commit is contained in:
Maxime Coste 2015-07-13 13:50:36 +01:00
parent 905af05c61
commit c44c8c3d1f

View File

@ -395,19 +395,19 @@ void pipe(Context& context, NormalParams)
Vector<String> strings;
for (auto& sel : selections)
{
auto str = content(buffer, sel);
bool insert_eol = str.back() != '\n';
auto in = content(buffer, sel);
bool insert_eol = in.back() != '\n';
if (insert_eol)
str += '\n';
str = ShellManager::instance().eval(
real_cmd, context, str,
in += '\n';
auto out = ShellManager::instance().eval(
real_cmd, context, in,
ShellManager::Flags::WaitForStdout,
{}, EnvVarMap{}).first;
if ((insert_eol or sel.max() == buffer.back_coord()) and
str.back() == '\n')
str = str.substr(0, str.length()-1).str();
strings.push_back(std::move(str));
out.back() == '\n')
out = out.substr(0, out.length()-1).str();
strings.push_back(std::move(out));
}
ScopedEdition edition(context);
selections.insert(strings, InsertMode::Replace);