2bb3a9da24
This is a mostly cosmetical commit, in the sense it doesn't change the contents of any package, but reorganizes the overall Nixpkgs expressions. Terminal emulators are an ubiquitous tool for any Unix user; even the beginners are routinely familiarized to it. And, manifestly, there are many implementations of terminal emulators out there, from those traditionally made in C and C++ to those written in Haskell and Go. Terminal emulators deserve more highlight. This commit does that by creating a category for them.
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
Based on https://github.com/thestinger/termite/pull/516
|
|
Modified to apply to v13
|
|
|
|
From 65a454ffa8e681f3f14729cba7c42e1570a85e8a Mon Sep 17 00:00:00 2001
|
|
From: Paul Baecher <pbaecher@gmail.com>
|
|
Date: Thu, 7 Sep 2017 22:58:51 +0200
|
|
Subject: [PATCH] Do not match punctuation at the end of URLs
|
|
|
|
Punctuation at the end of URLs is most likely part of natural language
|
|
or markup (for example in Markdown). Do not match it as part of the URL.
|
|
---
|
|
url_regex.hh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/url_regex.hh b/url_regex.hh
|
|
index 2ec6be8..3039b53 100644
|
|
--- a/url_regex.hh
|
|
+++ b/url_regex.hh
|
|
@@ -9,7 +9,7 @@
|
|
#define PORT "(?:\\:[[:digit:]]{1,5})?"
|
|
#define SCHEME "(?:[[:alpha:]][+-.[:alnum:]]*:)"
|
|
#define USERPASS USERCHARS_CLASS "+(?:\\:" PASSCHARS_CLASS "+)?"
|
|
-#define URLPATH "(?:/[[:alnum:]\\Q-_.!~*'();/?:@&=+$,#%\\E]*)?"
|
|
+#define URLPATH "(?:/[[:alnum:]\\Q-_.!~*'();/?:@&=+$,#%\\E]*(?<![\\Q.,:;()!?\\E]))?"
|
|
|
|
const char * const url_regex = SCHEME "//(?:" USERPASS "\\@)?" HOST PORT URLPATH;
|
|
|