From 06c1c5f28bb4b246c6832cd5de9ddc79c028e26f Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 12 Mar 2016 16:44:55 +0000 Subject: Do not include the debug buffer in word completion --- src/buffer.hh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/buffer.hh') diff --git a/src/buffer.hh b/src/buffer.hh index c8870509..a7ab127c 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -102,10 +102,11 @@ public: enum class Flags { None = 0, - File = 1, - New = 2, - Fifo = 4, - NoUndo = 8, + File = 1 << 0, + New = 1 << 1, + Fifo = 1 << 2, + NoUndo = 1 << 3, + Debug = 1 << 4 }; Buffer(String name, Flags flags, StringView data = {}, -- cgit v1.2.3