aboutsummaryrefslogtreecommitdiffstats
path: root/bash_completion
AgeCommit message (Collapse)Author
2018-08-06Disable SC2207 for Bash completion (#296)Latchezar Tzvetkoff
SC2207 suggests to use `mapfile` or `read -a`. `mapfile` was added in Bash 4, while `read -a` only reads the first line from a file, so both are no go.
2018-08-03Fix Bash completion for Bash 3 (#295)Latchezar Tzvetkoff
Well, since Bash 3 lacks the `readarray` (`mapfile`), kerl's completion does not work - and, unfortunately, Яpple still ships Bash 3 as default shell on macOS. In this change we directly assign the result of `compgen` to `COMPREPLY` instead of reading the output of `compgen` into a variable. Tested on: - 3.2.57(1)-release (macOS default) - 4.4.23(1)-release (Homebrew)
2018-05-03Testing odbc+wx on OTP 20.3 on a slim jessie (#271)Pierre Fenoll
* wx-20.3: seeing about kerl/kerl/issues/270 * wx-20.3: less failible test + less deps * wx-20.3: move linux tests out of TravisCI into CircleCI * wx-20.3: always use git backend (erlang.org is still down) * wx-20.3: work around fact that erlang.org is down in .travis.yml * wx-20.3: fix some things * wx-20.3: looks like skipping happens too late * Revert "wx-20.3: looks like skipping happens too late" This reverts commit e0600cefa71760e9bd74e7efc37089d5d75e764e. * wx-20.3: that should fix it * wx-20.3: run shellcheck in circle, now travis is only about osx! * wx-20.3: that did not fix it (cc @mrallen1) * wx-20.3: shellcheck stable segfaults? * wx-20.3: should fix shellcheck segfault * SC1117: Backslash is literal in "\!". Prefer explicit escaping: "\\!". Not sure about the csh one. @mcrallen1 you have a clue? * wx-20.3: SC2207: Prefer mapfile or read -a to split command output (or quote to avoid splitting). * wx-20.3: SC2154: words is referenced but not assigned. * wx-20.3: replace some double quotes with simple ones * wx-20.3: ps not found on debian9!? * wx-20.3: what now * wx-20.3: lets try a later vsn * wx-20.3: some cleaning up * wx-20.3: YAML fun * wx-20.3: wat
2017-02-18Extend bash completion for 'kerl path'get_active_path-clisanmiguel
2016-04-13Merge pull request #46 from mryufeng/master0.9.1Mark Allen
make _get_comp_words_by_ref more strong
2016-01-10Fix most shellcheck warnings/errorsPierre Fenoll
2013-06-16make _get_comp_words_by_ref more strongyufeng
2012-12-02Drop agner supportYurii Rashkovskii
Closes #32
2012-05-12Add 'kerl deploy' command to deploy an installation to a given host and ↵Joseph Wayne Norton
directory
2011-04-08Add a bash_completion script for kerlEvax Software