comparison console/libgnt/gntentry.c @ 14976:1c0772f7260b

[gaim-migrate @ 17755] Decide the values for ctrl-up/down at startup depending on $TERM. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 15 Nov 2006 20:39:32 +0000
parents f16e056f816d
children ed14c190a868
comparison
equal deleted inserted replaced
14975:2ccce4e114ca 14976:1c0772f7260b
583 gnt_bindable_class_register_action(bindable, "suggest-next", suggest_next, 583 gnt_bindable_class_register_action(bindable, "suggest-next", suggest_next,
584 GNT_KEY_DOWN, NULL); 584 GNT_KEY_DOWN, NULL);
585 gnt_bindable_class_register_action(bindable, "suggest-prev", suggest_prev, 585 gnt_bindable_class_register_action(bindable, "suggest-prev", suggest_prev,
586 GNT_KEY_UP, NULL); 586 GNT_KEY_UP, NULL);
587 gnt_bindable_class_register_action(bindable, "history-prev", history_prev, 587 gnt_bindable_class_register_action(bindable, "history-prev", history_prev,
588 "\033" GNT_KEY_CTRL_DOWN, NULL); 588 GNT_KEY_CTRL_DOWN, NULL);
589 gnt_bindable_class_register_action(bindable, "history-next", history_next, 589 gnt_bindable_class_register_action(bindable, "history-next", history_next,
590 "\033" GNT_KEY_CTRL_UP, NULL); 590 GNT_KEY_CTRL_UP, NULL);
591 591
592 gnt_style_read_actions(G_OBJECT_CLASS_TYPE(klass), GNT_BINDABLE_CLASS(klass)); 592 gnt_style_read_actions(G_OBJECT_CLASS_TYPE(klass), GNT_BINDABLE_CLASS(klass));
593 GNTDEBUG; 593 GNTDEBUG;
594 } 594 }
595 595