From ae0dd3fc565b6074a61ba7a1f43b50e6fb3bd891 Mon Sep 17 00:00:00 2001 From: Jonas Ryssel Date: Fri, 3 Feb 2023 09:29:17 +0100 Subject: [PATCH] Follow symlinks in snippets folder --- init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.vim b/init.vim index f51c18b..ab27e30 100644 --- a/init.vim +++ b/init.vim @@ -967,7 +967,7 @@ function! InsertSnip(snip_name) endfunction function! FzySnip() - call picker#File('find -type f -name "*.snip"', 'R', {'cwd': stdpath('config') . '/snippets'}) + call picker#File('find -follow -type f -name "*.snip"', 'R', {'cwd': stdpath('config') . '/snippets'}) endfunction command! -nargs=1 R call InsertSnip()