From 99a508ec6672032b7ce4518e9c2b07537a8b6b7a Mon Sep 17 00:00:00 2001 From: honkaboy Date: Fri, 1 Feb 2019 11:10:30 -0800 Subject: [PATCH] Make yankring history hidden by default. Make yankring history hidden by default. Currently it creates a file called yankring_history_v2.txt in your home folder, which a lot of people don't particularly want (https://stackoverflow.com/questions/15010271/change-location-of-vim-yankring-history-file/15010272#15010272). --- plugin/yankring.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/yankring.vim b/plugin/yankring.vim index 3cc6780..0884001 100644 --- a/plugin/yankring.vim +++ b/plugin/yankring.vim @@ -47,7 +47,7 @@ if !exists('g:yankring_buffer_name') endif if !exists('g:yankring_history_file') - let g:yankring_history_file = 'yankring_history' + let g:yankring_history_file = '.yankring_history' endif " Allow the user to override the # of yanks/deletes recorded