aboutsummaryrefslogtreecommitdiffhomepage
path: root/alias
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2024-05-12 14:06:53 +0800
committerHsieh Chin Fan <pham@topo.tw>2024-05-12 14:06:53 +0800
commit25eb4fcde6dd4594ecd504cc8fcdfbdb1d68b081 (patch)
treebb0ddf257eff9f3716805a325cf516303dbab5d0 /alias
parent537beca50c8bd0e513a18ca08c9d68b97d8fcbed (diff)
Update
Diffstat (limited to 'alias')
-rw-r--r--alias10
1 files changed, 10 insertions, 0 deletions
diff --git a/alias b/alias
index 2c14104..e7118cf 100644
--- a/alias
+++ b/alias
@@ -552,3 +552,13 @@ alias allo="$EDITOR $LOCAL_ALIAS && source $LOCAL_ALIAS"
552if [ -e $LOCAL_ALIAS ]; then 552if [ -e $LOCAL_ALIAS ]; then
553 source $LOCAL_ALIAS 553 source $LOCAL_ALIAS
554fi 554fi
555
556vvv() {
557 while true; do
558 vim -c 'norm '
559 if [ $? -ne 0 ]; then
560 break
561 fi
562 echo "restarting nvim...";
563 done
564}