diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-10 20:08:51 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-10 20:08:51 +0100 |
commit | f120e3e367f01f006bd5ddfd9f1ac018273e75e3 (patch) | |
tree | 65e51cfbc6bc05eb25d331bcb86ed642a1af6bad /parser.h | |
parent | 5aa548cd63edb8ba12c656300a2a5f0ff62a7b36 (diff) | |
download | sciteco-f120e3e367f01f006bd5ddfd9f1ac018273e75e3.tar.gz |
filename autocompletion using <CTRL/T> and <TAB>
* <TAB> autocompletion only in specified states
* GtkInfoPopup widget to display possible completions, written using Gob2
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -105,6 +105,8 @@ extern struct States { StateInsert insert; } states; +extern State *current_state; + extern enum Mode { MODE_NORMAL = 0, MODE_PARSE_ONLY @@ -116,6 +118,7 @@ extern enum Mode { } G_STMT_END extern gchar *strings[2]; +extern gchar escape_char; bool macro_execute(const gchar *macro); |