Re-enable snippets completion.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/branches/plugin-keybindings@2302 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-03-03 17:35:32 +00:00
parent 8b0842560b
commit 15ceaea0cf
2 changed files with 5 additions and 5 deletions

View File

@ -5,6 +5,7 @@
Fix clearing a shortcut when overriding it in Prefs dialog.
* src/keybindings.c:
Re-enable focus commands in the VTE.
Re-enable snippets completion.
2008-02-29 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -765,10 +765,10 @@ static gboolean check_fixed_kb(guint keyval, guint state)
* return FALSE if no completion occurs, so the tab or space is handled normally. */
static gboolean check_snippet_completion(guint keyval, guint state)
{
return FALSE; /* tmp */
#if 0
const guint i = GEANY_KEYS_EDIT_COMPLETESNIPPET;
if (keys[i]->key == keyval && keys[i]->mods == state)
KeyBinding *kb = keybindings_lookup_item(GEANY_KEYGROUP_TAGS,
GEANY_KEYS_EDIT_COMPLETESNIPPET);
if (kb->key == keyval && kb->mods == state)
{
gint idx = document_get_cur_idx();
GtkWidget *focusw = gtk_window_get_focus(GTK_WINDOW(app->window));
@ -784,7 +784,6 @@ return FALSE; /* tmp */
}
}
return FALSE;
#endif
}