From: Michael D. Lowis Date: Fri, 16 Dec 2016 17:33:23 +0000 (-0500) Subject: Added / and . to valid word chars so file names will be selected X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=371aeaa04f6b70115ef5f280150b45e7e9a786d3;p=projs%2Ftide.git Added / and . to valid word chars so file names will be selected --- diff --git a/libedit/utils.c b/libedit/utils.c index edb1c06..db3c0aa 100644 --- a/libedit/utils.c +++ b/libedit/utils.c @@ -50,7 +50,8 @@ void funmap(FMap file) { bool risword(Rune r) { return (r < 127 && (isalnum(r) || r == '_' || r == ':' || r == '!' || - r == '|' || r == '>' || r == '<')); + r == '|' || r == '>' || r == '<' || r == '/' || + r == '.')); } bool risblank(Rune r) {