plugin/history*search: no need to load after `plugin/history`

There's no need for these plugins to load after `plugin/history`. None of the history plugins depend upon each other loading before, after, or at all.
pull/1940/head
John D Pell 2021-12-27 16:38:46 -08:00 committed by John D Pell
parent 267a721ac6
commit f6119567e8
2 changed files with 0 additions and 6 deletions

View File

@ -1,9 +1,6 @@
# shellcheck shell=bash # shellcheck shell=bash
about-plugin 'search history using the prefix already entered' about-plugin 'search history using the prefix already entered'
# Load after the history plugin
# BASH_IT_LOAD_PRIORITY: 375
# enter a few characters and press UpArrow/DownArrow # enter a few characters and press UpArrow/DownArrow
# to search backwards/forwards through the history # to search backwards/forwards through the history
if [[ ${SHELLOPTS} =~ (vi|emacs) ]]; then if [[ ${SHELLOPTS} =~ (vi|emacs) ]]; then

View File

@ -1,9 +1,6 @@
# shellcheck shell=bash # shellcheck shell=bash
about-plugin 'search history using the substring already entered' about-plugin 'search history using the substring already entered'
# Load after the history plugin
# BASH_IT_LOAD_PRIORITY: 375
# enter a few characters and press UpArrow/DownArrow # enter a few characters and press UpArrow/DownArrow
# to search backwards/forwards through the history # to search backwards/forwards through the history
if [[ ${SHELLOPTS} =~ (vi|emacs) ]]; then if [[ ${SHELLOPTS} =~ (vi|emacs) ]]; then