From 40999387e4241dc459dffaa8983e580d171b4494 Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Wed, 18 Feb 2026 16:58:21 +0000 Subject: [PATCH] Make ctrl-t work better with broken links --- .../00-fzf-include-dotfiles-exclude-git.bash | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash b/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash index acc3062..d2228d9 100644 --- a/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash +++ b/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash @@ -1,5 +1,5 @@ -export FZF_DEFAULT_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/node_modules/*,**/.git/*}'" -export FZF_CTRL_T_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/node_modules/*,**/.git/*}'" +export FZF_DEFAULT_COMMAND="rg --files --no-messages --follow --no-ignore-vcs --hidden -g '!{**/node_modules/*,**/.git/*}'" +export FZF_CTRL_T_COMMAND="rg --files --no-messages --follow --no-ignore-vcs --hidden -g '!{**/node_modules/*,**/.git/*}'" export FZF_COMPLETION_TRIGGER='\\' -export FZF_DEFAULT_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/__pycache__/*,**/.npm/*,**/node_modules/*,**/.git/*}'" -export FZF_CTRL_T_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/__pycache__/*,**/.npm/*,**/node_modules/*,**/.git/*}'" +export FZF_DEFAULT_COMMAND="rg --files --no-messages --follow --no-ignore-vcs --hidden -g '!{**/__pycache__/*,**/.npm/*,**/node_modules/*,**/.git/*}'" +export FZF_CTRL_T_COMMAND="rg --files --no-messages --follow --no-ignore-vcs --hidden -g '!{**/__pycache__/*,**/.npm/*,**/node_modules/*,**/.git/*}'"