summaryrefslogtreecommitdiff
path: root/src/buffer_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer_utils.cc')
-rw-r--r--src/buffer_utils.cc22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/buffer_utils.cc b/src/buffer_utils.cc
index 6de07c71..21ec7092 100644
--- a/src/buffer_utils.cc
+++ b/src/buffer_utils.cc
@@ -205,7 +205,7 @@ Buffer* create_fifo_buffer(String name, int fd, Buffer::Flags flags, bool scroll
m_buffer.flags() &= ~(Buffer::Flags::Fifo | Buffer::Flags::NoUndo);
}
- void read_fifo() const
+ void read_fifo()
{
kak_assert(m_buffer.flags() & Buffer::Flags::Fifo);
@@ -234,20 +234,21 @@ Buffer* create_fifo_buffer(String name, int fd, Buffer::Flags flags, bool scroll
}
auto pos = m_buffer.back_coord();
- const bool prevent_scrolling = pos == BufferCoord{0,0} and not m_scroll;
- if (prevent_scrolling)
+ const bool is_first = pos == BufferCoord{0,0};
+ if (not m_scroll and (is_first or m_had_trailing_newline))
pos = m_buffer.next(pos);
- m_buffer.insert(pos, StringView(data, data+count));
+ pos = m_buffer.insert(pos, StringView(data, data+count)).end;
- if (prevent_scrolling)
+ bool have_trailing_newline = (data[count-1] == '\n');
+ if (not m_scroll)
{
- m_buffer.erase({0,0}, m_buffer.next({0,0}));
- // in the other case, the buffer will have automatically
- // inserted a \n to guarantee its invariant.
- if (data[count-1] == '\n')
- m_buffer.insert(m_buffer.end_coord(), "\n");
+ if (is_first)
+ m_buffer.erase({0,0}, m_buffer.next({0,0}));
+ else if (not m_had_trailing_newline and have_trailing_newline)
+ m_buffer.erase(pos, m_buffer.next(pos));
}
+ m_had_trailing_newline = have_trailing_newline;
}
while (++loop < max_loop and fd_readable(fifo));
}
@@ -263,6 +264,7 @@ Buffer* create_fifo_buffer(String name, int fd, Buffer::Flags flags, bool scroll
Buffer& m_buffer;
bool m_scroll;
+ bool m_had_trailing_newline;
};
buffer->values()[fifo_watcher_id] = Value(Meta::Type<FifoWatcher>{}, fd, *buffer, scroll);