From f6119567e835b2048ca7ac015663381151e45b8e Mon Sep 17 00:00:00 2001 From: John D Pell Date: Mon, 27 Dec 2021 16:38:46 -0800 Subject: [PATCH] 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. --- plugins/available/history-search.plugin.bash | 3 --- plugins/available/history-substring-search.plugin.bash | 3 --- 2 files changed, 6 deletions(-) diff --git a/plugins/available/history-search.plugin.bash b/plugins/available/history-search.plugin.bash index 341ce2af..96941993 100644 --- a/plugins/available/history-search.plugin.bash +++ b/plugins/available/history-search.plugin.bash @@ -1,9 +1,6 @@ # shellcheck shell=bash 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 # to search backwards/forwards through the history if [[ ${SHELLOPTS} =~ (vi|emacs) ]]; then diff --git a/plugins/available/history-substring-search.plugin.bash b/plugins/available/history-substring-search.plugin.bash index 586ceb50..dde32720 100644 --- a/plugins/available/history-substring-search.plugin.bash +++ b/plugins/available/history-substring-search.plugin.bash @@ -1,9 +1,6 @@ # shellcheck shell=bash 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 # to search backwards/forwards through the history if [[ ${SHELLOPTS} =~ (vi|emacs) ]]; then