diff options
author | davidovski <david@davidovski.xyz> | 2022-05-16 00:48:34 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-16 00:48:34 +0100 |
commit | 381aaffe4ed3caa0f1356b720f6d4fc0de5b1f8f (patch) | |
tree | dc8a619c66a8e538f94ac2701b6e42750d0d9406 /scripts/fzf-bash-completion.sh | |
parent | 1406e81f40a5e0ef4632e7c518b0629514a79de3 (diff) |
removed bash and added mkshrc
Diffstat (limited to 'scripts/fzf-bash-completion.sh')
-rw-r--r-- | scripts/fzf-bash-completion.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/fzf-bash-completion.sh b/scripts/fzf-bash-completion.sh index 9a63e15..337e908 100644 --- a/scripts/fzf-bash-completion.sh +++ b/scripts/fzf-bash-completion.sh @@ -42,9 +42,9 @@ _fzf_bash_completion_flatten_subshells() { printf '%s\n' "$line$buffer" buffer= fi - done < <(tac) + done < <(cat) printf '%s\n' "$buffer" - ) | tac + ) | cat } _fzf_bash_completion_find_matching_bracket() { |