1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 03:33:12 +02:00

Added alt-k key to grab a key and insert result into input buffer

This commit is contained in:
Sebastien Helleu
2005-07-16 11:14:47 +00:00
parent 930c40eae1
commit a68a1f8192
20 changed files with 1000 additions and 732 deletions
-3
View File
@@ -204,9 +204,6 @@ completion_build_list (t_completion *completion, void *channel)
if ((strcasecmp (completion->base_command, "key") == 0)
&& (completion->base_command_arg == 1))
{
weelist_add (&completion->completion_list,
&completion->last_completion,
"bind");
weelist_add (&completion->completion_list,
&completion->last_completion,
"unbind");
+1 -1
View File
@@ -112,7 +112,7 @@ fifo_exec (char *text)
if (text[0] == '*')
{
pos_msg = text + 1;
ptr_buffer = (gui_current_window->buffer->dcc) ? gui_buffers : gui_current_window->buffer;
ptr_buffer = (gui_current_window->buffer->has_input) ? gui_current_window->buffer : gui_buffers;
ptr_server = SERVER(ptr_buffer);
}
else