diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-10 17:34:11 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-10 17:34:11 +0100 |
commit | ff9ffb89fc440e09a99ff49db3a5bcebe19ee5e0 (patch) | |
tree | 541afa8999f31c8200236bee17fac30780a47921 | |
parent | 5b4d58dacadf19d843807d4600c856eeda0f5e28 (diff) |
added sourcing of ksh completion file
-rw-r--r-- | kshrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,11 @@ if [ -e /home/lemon/.ksh_aliases ]; then . /home/lemon/.ksh_aliases fi +# we want completion +if [ -e /home/lemon/.ksh_completion ]; then + . /home/lemon/.ksh_completion +fi + # set environment variables for bookmark.py if [ -e /home/lemon/.bookmarkpy ]; then . /home/lemon/.bookmarkpy |