File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ plugins/available/alias-completion.plugin.bash
84
84
plugins/available/autojump.plugin.bash
85
85
plugins/available/base.plugin.bash
86
86
plugins/available/basher.plugin.bash
87
+ plugins/available/blesh.plugin.bash
87
88
plugins/available/cmd-returned-notify.plugin.bash
88
89
plugins/available/direnv.plugin.bash
89
90
plugins/available/docker-machine.plugin.bash
Original file line number Diff line number Diff line change
1
+ # shellcheck shell=bash
2
+ cite about-plugin
3
+ about-plugin ' load ble.sh, the Bash line editor!'
4
+
5
+ if [[ ${BLE_VERSION-} ]]; then
6
+ _log_warning " ble.sh is already loaded!"
7
+ return
8
+ fi
9
+
10
+ _bash_it_ble_path=${XDG_DATA_HOME:- $HOME / .local/ share} /blesh/ble.sh
11
+ if [[ -f $_bash_it_ble_path ]]; then
12
+ # shellcheck disable=1090
13
+ source " $_bash_it_ble_path "
14
+ else
15
+ _log_error " Could not find ble.sh in $_bash_it_ble_path "
16
+ _log_error " Please install using the following command:"
17
+ _log_error " git clone https://github.com/akinomyoga/ble.sh && make -C ble.sh install"
18
+ fi
19
+ unset _bash_it_ble_path
You can’t perform that action at this time.
0 commit comments