aboutsummaryrefslogtreecommitdiff
path: root/alacritty-completions.bash
diff options
context:
space:
mode:
authorMicha Gorelick <mynameisfiber@gmail.com>2018-07-15 09:00:58 -0400
committerChristian Duerr <chrisduerr@users.noreply.github.com>2018-07-15 13:00:58 +0000
commit4928b0ae75aa326e8dd96e745fb701ae1ce1fce1 (patch)
tree7208a28e32af7f1d786c09c74ffbf84ed86e3686 /alacritty-completions.bash
parent7433f45ff9c6efeb48e223e90dd4aa9ee135b5e8 (diff)
downloadalacritty-4928b0ae75aa326e8dd96e745fb701ae1ce1fce1.tar.gz
alacritty-4928b0ae75aa326e8dd96e745fb701ae1ce1fce1.zip
Add `cargo deb` build instructions
Updated the `Cargo.toml` file and added a `package.metadata.deb` subsection to define how to build a debian "deb" install file using `cargo deb`. This will allow debian/ubuntu users to install `alacritty` using their system's package manager. It also will make it easier to provide pre-built binaries for those systems. Also fixed a stray debug line in the bash autocomplete script that was writting to a tempfile.
Diffstat (limited to 'alacritty-completions.bash')
-rw-r--r--alacritty-completions.bash1
1 files changed, 0 insertions, 1 deletions
diff --git a/alacritty-completions.bash b/alacritty-completions.bash
index 57191515..f8ffc107 100644
--- a/alacritty-completions.bash
+++ b/alacritty-completions.bash
@@ -15,7 +15,6 @@ _alacritty()
# If `--command` or `-e` is used, stop completing
for i in "${!COMP_WORDS[@]}"; do
- echo "${COMP_WORDS[i]}" >> ./testfile
if [[ "${COMP_WORDS[i]}" == "--command" ]] \
|| [[ "${COMP_WORDS[i]}" == "-e" ]] \
&& [[ "${#COMP_WORDS[@]}" -gt "$(($i + 2))" ]]