Revision: 2045 http://geany.svn.sourceforge.net/geany/?rev=2045&view=rev Author: eht16 Date: 2007-11-12 01:36:25 -0800 (Mon, 12 Nov 2007)
Log Message: ----------- Forgot to commit, sorry.
Modified Paths: -------------- trunk/ChangeLog trunk/src/editor.h
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-11-12 09:27:43 UTC (rev 2044) +++ trunk/ChangeLog 2007-11-12 09:36:25 UTC (rev 2045) @@ -2,15 +2,14 @@
* Makefile.am, geany.glade, data/autocomplete.conf, data/snippets.conf, doc/geany.txt, doc/geany.html, doc/geany.1.in, src/document.c, - src/editor.c, src/geany.h, src/highlighting.c, src/interface.c, - src/keybindings.c, src/keybindings.h, src/keyfile.c, src/keyfile.h, - src/main.c, src/plugindata.h, src/prefs.c: + src/editor.c, src/editor.h,src/geany.h, src/highlighting.c, + src/interface.c, src/keybindings.c, src/keybindings.h, src/keyfile.c, + src/keyfile.h, src/main.c, src/plugindata.h, src/prefs.c: Rename "Contruct autocompletion" to "Snippets". Allow changing height of the symbol completion list even if automatic symbol is disabled, it still can be forced by keybinding.
- 2007-11-11 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/templates.c, src/utils.c, src/utils.h:
Modified: trunk/src/editor.h =================================================================== --- trunk/src/editor.h 2007-11-12 09:27:43 UTC (rev 2044) +++ trunk/src/editor.h 2007-11-12 09:36:25 UTC (rev 2045) @@ -69,9 +69,9 @@ gboolean newline_strip; gboolean auto_complete_symbols; gboolean auto_close_xml_tags; - gboolean auto_complete_constructs; - gint autocompletion_max_height; - GHashTable *auto_completions; + gboolean complete_snippets; + gint symbolcompletion_max_height; + GHashTable *snippets; gboolean brace_match_ltgt; // whether to highlight < and > chars (hidden pref) gboolean use_gtk_word_boundaries; // hidden pref gboolean auto_complete_whilst_editing; // hidden pref @@ -101,7 +101,7 @@
void editor_close_block(gint idx, gint pos);
-gboolean editor_auto_complete(gint idx, gint pos); +gboolean editor_complete_snippet(gint idx, gint pos);
void editor_auto_latex(gint idx, gint pos);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.