vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 04766ba6c9872cc297293ac90c3098a2bd1e5ee4 parent 211a18e0dfacd53bffde501ba19f8a990632cb8a Author: Randy Palamar <palamar@ualberta.ca> Date: Wed, 27 Sep 2023 19:55:03 -0600 vis-complete: also split on `\` suggested in [0] since it will be help for latex [0]: https://github.com/martanne/vis/commit/7773d1d#comments Diffstat:
| M | vis-complete | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vis-complete b/vis-complete @@ -48,7 +48,7 @@ fi PATTERN="$1" if [ $COMPLETE_WORD = 1 ]; then - tr -s '\t {}()[],<>%^&.' '\n' | + tr -s '\t {}()[],<>%^&.\\' '\n' | grep "^$(basic_regex_quote "$PATTERN")." | sort -u else