summaryrefslogtreecommitdiff
path: root/src/buffer.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-03-12 16:44:55 +0000
committerMaxime Coste <frrrwww@gmail.com>2016-03-12 16:44:55 +0000
commit06c1c5f28bb4b246c6832cd5de9ddc79c028e26f (patch)
treef55ab40b578d4c782082835253ea1f945691e899 /src/buffer.hh
parent35d3679703901da81081dc52233f3963c093dfe9 (diff)
Do not include the debug buffer in word completion
Diffstat (limited to 'src/buffer.hh')
-rw-r--r--src/buffer.hh9
1 files changed, 5 insertions, 4 deletions
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 = {},