From 71f84c2ca051fb3f4e0e98faaba05e9449598b81 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sat, 24 Nov 2012 19:57:07 +0100 Subject: support auto-completion of symbols in the scintilla command (ES) * does not yet handle case-insensitive completions * does not handle omitting of the SCI_ prefix --- qbuffers.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qbuffers.cpp') diff --git a/qbuffers.cpp b/qbuffers.cpp index de9159e..ce22b6f 100644 --- a/qbuffers.cpp +++ b/qbuffers.cpp @@ -727,9 +727,9 @@ StateEditFile::initial(void) throw (Error) if (id == 0) { for (Buffer *cur = ring.first(); cur; cur = cur->next()) - interface.popup_add_filename(Interface::POPUP_FILE, - cur->filename ? : "(Unnamed)", - cur == ring.current); + interface.popup_add(Interface::POPUP_FILE, + cur->filename ? : "(Unnamed)", + cur == ring.current); interface.popup_show(); } -- cgit v1.2.3