aboutsummaryrefslogtreecommitdiff
path: root/text-motions.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-27 17:12:40 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-27 17:12:40 +0200
commitc034be42821637990ac1d4c0f0329be0e98f70b1 (patch)
tree7020cc40b6d03954b271c3deb129a4e60869c4ae /text-motions.c
parentaa4823e78092ac3c18201089b4c2eedb9cd6bfe6 (diff)
downloadvis-c034be42821637990ac1d4c0f0329be0e98f70b1.tar.gz
vis-c034be42821637990ac1d4c0f0329be0e98f70b1.tar.xz
Add text objects for word (lowercase) variant
Diffstat (limited to 'text-motions.c')
-rw-r--r--text-motions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text-motions.c b/text-motions.c
index 3dbd4c5..8462fff 100644
--- a/text-motions.c
+++ b/text-motions.c
@@ -19,7 +19,7 @@
#include "util.h"
// TODO: specify this per file type?
-static int is_word_boundry(int c) {
+int is_word_boundry(int c) {
return ISASCII(c) && !(('0' <= c && c <= '9') ||
('a' <= c && c <= 'z') ||
('A' <= c && c <= 'Z'));