> @@ -109,6 +109,8 @@ static void close_block(GeanyEditor *editor, gint pos); > static void editor_highlight_braces(GeanyEditor *editor, gint cur_pos); > static void read_current_word(GeanyEditor *editor, gint pos, gchar *word, > gsize wordlen, > const gchar *wc, gboolean stem); > +static void read_current_scope(GeanyEditor *editor, gint pos, gchar *word, > gsize wordlen,
It doesn't read the "current" scope, which is a lexical attribute of the position in the code, rather it reads scope related prefixes that exist in the text. So I suggest renaming it to `read_scope_prefix`. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1176/files/d51e8b3cff412746f5ed820b5c628f0b46ef67a6#r74563613
