mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
delete_previous_word and delete_next_word now deletes only until
non-alphanumeric character is found. added delete_to_next_space command. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1833 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
4e9ff3d6d8
commit
8c7243f19c
3 changed files with 36 additions and 20 deletions
|
|
@ -29,8 +29,8 @@ void gui_entry_insert_text(GUI_ENTRY_REC *entry, const char *str);
|
|||
void gui_entry_insert_char(GUI_ENTRY_REC *entry, char chr);
|
||||
|
||||
void gui_entry_erase(GUI_ENTRY_REC *entry, int size);
|
||||
void gui_entry_erase_word(GUI_ENTRY_REC *entry);
|
||||
void gui_entry_erase_next_word(GUI_ENTRY_REC *entry);
|
||||
void gui_entry_erase_word(GUI_ENTRY_REC *entry, int to_space);
|
||||
void gui_entry_erase_next_word(GUI_ENTRY_REC *entry, int to_space);
|
||||
|
||||
int gui_entry_get_pos(GUI_ENTRY_REC *entry);
|
||||
void gui_entry_set_pos(GUI_ENTRY_REC *entry, int pos);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue