mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
/BIND meta-k erase_completion - support for removing completion data.
Currently this works only with /MSG completion, so eg. /MSG nick <meta-k> removes nick from completion list and jumps to next completion. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2407 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
62028ad487
commit
3990779dc5
4 changed files with 132 additions and 20 deletions
|
|
@ -5,8 +5,10 @@
|
|||
|
||||
/* automatic word completion - called when space/enter is pressed */
|
||||
char *auto_word_complete(const char *line, int *pos);
|
||||
/* manual word completion - called when TAB is pressed */
|
||||
char *word_complete(WINDOW_REC *window, const char *line, int *pos);
|
||||
/* manual word completion - called when TAB is pressed. if erase is TRUE,
|
||||
the word is removed from completion list entirely (if possible) and
|
||||
next completion is used */
|
||||
char *word_complete(WINDOW_REC *window, const char *line, int *pos, int erase);
|
||||
|
||||
GList *filename_complete(const char *path, const char *default_path);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue