diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-24 19:57:07 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-24 19:57:07 +0100 |
commit | 71f84c2ca051fb3f4e0e98faaba05e9449598b81 (patch) | |
tree | cdcf22acae633132c2690c9c4035be915760a450 /qbuffers.cpp | |
parent | 2add69b7f08f19ae2687276ebafcf6989915aa69 (diff) | |
download | sciteco-71f84c2ca051fb3f4e0e98faaba05e9449598b81.tar.gz |
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
Diffstat (limited to 'qbuffers.cpp')
-rw-r--r-- | qbuffers.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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(); } |