all repos — nixfiles @ 4a6818f03acf0d9168402d7334cb00f6de1875e0

System and user configuration, managed by nix and home-manager

zsh: Fix missing leading characters in fzf file search
Alan Pearce alan@alanpearce.eu
Fri, 04 Sep 2020 15:52:47 +0200
commit

4a6818f03acf0d9168402d7334cb00f6de1875e0

parent

0524e9cc1abbad93fb6c12cd3a22ca602086a9e7

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M user/zsh/zshrcuser/zsh/zshrc
@@ -110,8 +110,7 @@ fi 
 export FZF_CTRL_T_COMMAND='
   (git ls-tree -r --name-only HEAD ||
-        fd --hidden --follow --exclude ".git" . |
-              sed s/^..//) 2> /dev/null'
+        fd --hidden --follow --exclude ".git" .) 2> /dev/null'
 export FZF_ALT_C_COMMAND='fd --type d --hidden --follow --exclude ".git" .'
 export FZF_DEFAULT_COMMAND=$FZF_CTRL_T_COMMAND