aboutsummaryrefslogtreecommitdiff
path: root/vis-complete
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2025-01-06 06:53:07 -0700
committerRandy Palamar <randy@rnpnr.xyz>2025-01-06 07:38:01 -0700
commitd5db964a4cd5ed2bce5e8724b800f6cb425df258 (patch)
treeee52f10d672f6877cdb062d2fd2509e83daecd61 /vis-complete
parent824a7d19ae5bdc8eb6b3d61a591dc26d33ab3a38 (diff)
downloadvis-d5db964a4cd5ed2bce5e8724b800f6cb425df258.tar.gz
vis-d5db964a4cd5ed2bce5e8724b800f6cb425df258.tar.xz
scripts: make option listing more consistent
Diffstat (limited to 'vis-complete')
-rwxr-xr-xvis-complete9
1 files changed, 4 insertions, 5 deletions
diff --git a/vis-complete b/vis-complete
index 50895b1..2e76499 100755
--- a/vis-complete
+++ b/vis-complete
@@ -11,11 +11,10 @@ usage() {
Interactively complete file or word
---file this passes pattern to obtain a list of matching
- file names (this is the default).
---word this reads standard input to obtain a list of lines
- matching pattern.
-pattern pattern to be completed"
+Options:
+ --file expand pattern into a list of matching file names (default)
+ --word apply pattern to a list of words from standard input
+ pattern pattern to be completed"
}
basic_regex_quote() { printf "%s" "$1" | sed 's|[\\.*^$[]|\\&|g'; }