From 6aeec2bcb48ad6324340ff8f14423442e18f0241 Mon Sep 17 00:00:00 2001 From: "chawley [chawley]" Date: Tue, 19 Mar 2024 11:50:04 -0400 Subject: [PATCH] Better comments for FZF Actions I'll never open files in tabs. Commented code to explain opeing FZF result in split,vsplit or copying filename to buffer. --- .vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 87d0140..1fb2b59 100644 --- a/.vimrc +++ b/.vimrc @@ -168,9 +168,10 @@ let g:airline#extensions#tabline#enabled = 1 let g:airline_theme = 'angr' " FZF Actions -" to copy FZF result into current buffer +" to open FZF result in a split +" to open FZF result in a vsplit +" to copy FZF result as text into current buffer let g:fzf_action = { - \ 'ctrl-t': 'tab split', \ 'ctrl-x': 'split', \ 'ctrl-v': 'vsplit', \ 'ctrl-o': ':r !echo'}