From: Michael D. Lowis Date: Thu, 20 Jul 2017 01:29:27 +0000 (-0400) Subject: Added ~ to allowed file chars X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=79831f7582688b46f17f57b2545282ac08956497;p=projs%2Ftide.git Added ~ to allowed file chars --- diff --git a/lib/utf8.c b/lib/utf8.c index a7fd88e..01842d6 100644 --- a/lib/utf8.c +++ b/lib/utf8.c @@ -114,7 +114,7 @@ bool rissigil(Rune r) { } bool risfile(Rune r) { - return (risword(r) || r == '/' || r == '.' || r == ':' || r == '-' || r == '.'); + return (risword(r) || r == '/' || r == '.' || r == ':' || r == '-' || r == '.' || r == '~'); } bool riscmd(Rune r) {