helpers: Add enable-plugin and enable-alias aliases
parent
ffeb770593
commit
41cba9d7e4
|
|
@ -650,6 +650,12 @@ _enable-plugin ()
|
|||
_enable-thing "plugins" "plugin" $1 $BASH_IT_LOAD_PRIORITY_DEFAULT_PLUGIN
|
||||
}
|
||||
|
||||
_enable-plugins ()
|
||||
{
|
||||
_about 'alias of _enable-plugin'
|
||||
_enable-plugin "$@"
|
||||
}
|
||||
|
||||
_enable-alias ()
|
||||
{
|
||||
_about 'enables bash_it alias'
|
||||
|
|
@ -660,6 +666,12 @@ _enable-alias ()
|
|||
_enable-thing "aliases" "alias" $1 $BASH_IT_LOAD_PRIORITY_DEFAULT_ALIAS
|
||||
}
|
||||
|
||||
_enable-aliases ()
|
||||
{
|
||||
_about 'alias of _enable-alias'
|
||||
_enable-alias "$@"
|
||||
}
|
||||
|
||||
_enable-completion ()
|
||||
{
|
||||
_about 'enables bash_it completion'
|
||||
|
|
|
|||
Loading…
Reference in New Issue