parent
6827662b27
commit
e7b4217762
|
@ -55,7 +55,8 @@ Buffer::Buffer(String name, Flags flags, BufferLines lines,
|
||||||
run_hook_in_own_context("BufCreate", m_name);
|
run_hook_in_own_context("BufCreate", m_name);
|
||||||
|
|
||||||
// now we may begin to record undo data
|
// now we may begin to record undo data
|
||||||
m_flags = flags;
|
if (not (flags & Flags::NoUndo))
|
||||||
|
m_flags &= ~Flags::NoUndo;
|
||||||
|
|
||||||
for (auto& option : options().flatten_options())
|
for (auto& option : options().flatten_options())
|
||||||
on_option_changed(*option);
|
on_option_changed(*option);
|
||||||
|
|
|
@ -119,6 +119,8 @@ Buffer* create_fifo_buffer(String name, int fd, bool scroll)
|
||||||
if (mode != EventMode::Normal)
|
if (mode != EventMode::Normal)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
kak_assert(buffer->flags() & Buffer::Flags::Fifo);
|
||||||
|
|
||||||
constexpr size_t buffer_size = 2048;
|
constexpr size_t buffer_size = 2048;
|
||||||
// if we read data slower than it arrives in the fifo, limiting the
|
// if we read data slower than it arrives in the fifo, limiting the
|
||||||
// iteration number allows us to go back go back to the event loop and
|
// iteration number allows us to go back go back to the event loop and
|
||||||
|
|
Loading…
Reference in New Issue
Block a user