Add │ as worddelimiter for st terminal

As I use tmux and │ is used to separate panes.
That eases to copy something from inside a pane which has contact to the
separator.
This commit is contained in:
Daniel Siepmann 2022-02-21 14:19:17 +01:00
parent 00320b8a48
commit 972475915e
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -16,7 +16,7 @@ index 91ab8ca..21fa0e6 100644
* More advanced example: L" `'\"()[]{}"
*/
-wchar_t *worddelimiters = L" ";
+wchar_t *worddelimiters = L" (){}[]<>'\"`";
+wchar_t *worddelimiters = L" (){}[]<>'\"`";
/* selection timeouts (in milliseconds) */
static unsigned int doubleclicktimeout = 300;