summaryrefslogtreecommitdiff
path: root/src/editor.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-10-30 09:02:45 +0000
committerMaxime Coste <frrrwww@gmail.com>2013-11-04 22:02:44 +0000
commit471aeaab9ab288bd3e58668fb60a9ebc50370ffb (patch)
tree12931f32b285d6b25609badf316c6af11906d987 /src/editor.hh
parent4c39743b69be5a6aa3df969042574ac31fe588f7 (diff)
remove filters, use hooks instead
Diffstat (limited to 'src/editor.hh')
-rw-r--r--src/editor.hh7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/editor.hh b/src/editor.hh
index 95ef2f52..8778a1a0 100644
--- a/src/editor.hh
+++ b/src/editor.hh
@@ -3,7 +3,6 @@
#include "buffer.hh"
#include "dynamic_selection_list.hh"
-#include "filter.hh"
#include "memoryview.hh"
namespace Kakoune
@@ -82,11 +81,6 @@ public:
bool undo();
bool redo();
- FilterGroup& filters() { return m_filters; }
-
- CandidateList complete_filterid(const String& prefix,
- size_t cursor_pos = String::npos);
-
bool is_editing() const { return m_edition_level!= 0; }
private:
friend struct scoped_edition;
@@ -104,7 +98,6 @@ private:
safe_ptr<Buffer> m_buffer;
DynamicSelectionList m_selections;
size_t m_main_sel;
- FilterGroup m_filters;
};
struct scoped_edition