Merge branch 'master' into config-file

Conflicts:
	config.h
This commit is contained in:
Daniel Micay 2012-06-07 16:40:18 -04:00
commit ca2f60b977
3 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -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}

View File

@ -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);
}