diff options
-rw-r--r-- | basta.sh | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -290,6 +290,11 @@ basta.import_array() # Public API functions basta.fullscreen() { + if [ -n "$COMP_WORDS" ]; then + command "$@" + return $? + fi + local realrows=$(( LINES + basta_prev_reserved_rows + 1 )) local exit= local saveint=$(trap -p INT) @@ -322,6 +327,11 @@ basta.fullscreen() { } basta.fullscreen_alt() { + if [ -n "$COMP_WORDS" ]; then + command "$@" + return $? + fi + local realrows=$(( LINES + basta_prev_reserved_rows + 1 )) local curline local i |