File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ Entries under the **Removed** section indicate items removed from the entire doc
1010
1111## Unreleased
1212
13+ ## 2025-09-30
14+
15+ ### Changed
16+
17+ - changed(zshrc): update homebrew command-not-found handler path
18+
1319## 2025-09-18
1420
1521### Changed
Original file line number Diff line number Diff line change @@ -206,8 +206,10 @@ fzf_tab="${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-tab/fzf-tab.plugin.zsh"
206206[[ -f $HOME /.config/op/plugins.sh ]] && source " $HOME /.config/op/plugins.sh"
207207
208208# # Homebrew Command Not Found Handler
209- HB_CNF_HANDLER=" $( brew --repository) /Library/Taps/homebrew/homebrew-command-not-found/handler.sh"
210- [[ -f $HB_CNF_HANDLER ]] && source " $HB_CNF_HANDLER "
209+ HOMEBREW_COMMAND_NOT_FOUND_HANDLER=" $( brew --repository) /Library/Homebrew/command-not-found/handler.sh"
210+ if [[ -f " $HOMEBREW_COMMAND_NOT_FOUND_HANDLER " ]]; then
211+ source " $HOMEBREW_COMMAND_NOT_FOUND_HANDLER "
212+ fi
211213
212214
213215# ###[ Zsh Style Configurations ]############################################################
You can’t perform that action at this time.
0 commit comments