From 8130c9dde11406568723267c05f7660a1920124a Mon Sep 17 00:00:00 2001 From: Simon Gomizelj Date: Thu, 7 Jun 2012 07:33:54 -0400 Subject: [PATCH 1/3] ( and ) are valid characters for URLs I noticed disambiguation wikipedia links weren't being matched properly. --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index 00163c6..ebfaf4d 100644 --- a/config.h +++ b/config.h @@ -5,7 +5,7 @@ #define CLICKABLE_URL //#define ICON_NAME "terminal" -static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+]*"; +static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+()]*"; #ifdef CLICKABLE_URL #define URL_COMMAND(URL_MATCH) {"/usr/bin/firefox", URL_MATCH, NULL} From ab76e301edace465bb06cdc56cccb833fd9f8f4c Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 7 Jun 2012 11:42:17 -0400 Subject: [PATCH 2/3] add missing newline to error message --- termite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/termite.c b/termite.c index 5b97629..351546e 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); } From 1a0dda746dda940f67e7b887c5c13c9932174076 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 7 Jun 2012 15:50:58 -0400 Subject: [PATCH 3/3] fix case in README --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,