diff --git a/README.rst b/README.rst index da7d29d..98ab0ce 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ KEYBINDINGS * ``ctrl-shift-p``: jump to previous search match * ``ctrl-tab``: start scrollback completion -During scrollback search, The current selection is changed to the search match +During scrollback search, the current selection is changed to the search match and copied to the PRIMARY clipboard buffer. With the scrollback completion/widget open, up/down cycle through completions, diff --git a/config.h b/config.h index 65f36da..cb0b6f3 100644 --- a/config.h +++ b/config.h @@ -1,4 +1,4 @@ -static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+]*"; +static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+()]*"; #define URL_COMMAND(URL_MATCH) {"/usr/bin/firefox", URL_MATCH, NULL} diff --git a/termite.c b/termite.c index 724478e..6bffee5 100644 --- a/termite.c +++ b/termite.c @@ -48,7 +48,7 @@ static GtkTreeModel *create_completion_model(VteTerminal *vte) { NULL, NULL, NULL); if (!content) { - g_printerr("no content returned for completion"); + g_printerr("no content returned for completion\n"); return GTK_TREE_MODEL(store); }