From 77198d3459db9b75aed4450182917d65d97e41ed Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Mon, 9 Nov 2020 17:50:05 -0500 Subject: [PATCH] support for SSH URIs --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index b69e3dc2..0d03f15f 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -299,7 +299,7 @@ class Terminal(Gtk.VBox): passchars = "-A-Za-z0-9,?;.:/!%$^*&~\"#'" hostchars = "-A-Za-z0-9:\[\]" pathchars = "-A-Za-z0-9_$.+!*(),;:@&=?/~#%'" - schemes = "(news:|telnet:|nntp:|file:/|https?:|ftps?:|webcal:)" + schemes = "(news:|telnet:|nntp:|file:/|https?:|ftps?:|webcal:|ssh:)" user = "[" + userchars + "]+(:[" + passchars + "]+)?" urlpath = "/[" + pathchars + "]*[^]'.}>) \t\r\n,\\\"]"