1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-30 23:37:17 +03:00

Add '[debug]' context_info for debug buffers

This commit is contained in:
Delapouite 2017-09-19 18:16:11 +02:00
parent 3aaf646eda
commit 17520a0886

View File

@ -136,6 +136,8 @@ String generate_context_info(const Context& context)
s += "[no-hooks]";
if (context.buffer().flags() & Buffer::Flags::Fifo)
s += "[fifo]";
if (context.buffer().flags() & Buffer::Flags::Debug)
s += "[debug]";
return s;
}