Merge pull request #1586 from nwinkler/fix-general-bash-it-description

Reworded the text for the general/bash-it alias loading
pull/1589/head
Nils Winkler 2020-05-07 08:59:30 +02:00 committed by GitHub
commit ecf16550fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,5 @@
cite about-alias cite about-alias
about-alias 'Aliases for the bash-it command (those aliases are also included with general aliases)' about-alias 'Aliases for the bash-it command (these aliases are automatically included with the "general" aliases)'
# Common misspellings of bash-it # Common misspellings of bash-it
alias shit='bash-it' alias shit='bash-it'
@ -21,4 +21,3 @@ alias bshsch="bash-it search"
alias bshenp="bash-it enable plugin" alias bshenp="bash-it enable plugin"
alias bshena="bash-it enable alias" alias bshena="bash-it enable alias"
alias bshenc="bash-it enable completion" alias bshenc="bash-it enable completion"

View File

@ -93,8 +93,11 @@ catt() {
done done
} }
# The bash-it aliases was move to bash-it.aliases.bash file. The intent of this # The Bash-it aliases were moved to the `bash-it.aliases.bash` file. The intent of this
# is to maintain the script readable and less bloated. If you don't need to use # is to keep the script readable and less bloated. If you don't need to use
# those aliases, but you want the bash-it shortcuts, you can disable this # the `general` aliases, but you want the Bash-it aliases, you can disable the `general`
# script and enable the bash-it. # aliases and enable just the ones for Bash-it explicitly:
# bash-it disable alias general
# bash-it enable alias bash-it
# shellcheck source=./bash-it.aliases.bash
source "$BASH_IT/aliases/available/bash-it.aliases.bash" source "$BASH_IT/aliases/available/bash-it.aliases.bash"