From 51a004e8655310242425e3c59d3664383ba08bf6 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sat, 23 Oct 2021 20:57:00 +0800 Subject: [PATCH] add notification for Redir command --- autoload/utils.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/utils.vim b/autoload/utils.vim index 9ab0991..696063d 100644 --- a/autoload/utils.vim +++ b/autoload/utils.vim @@ -182,6 +182,7 @@ function! utils#CaptureCommandOutput(command) abort redir @m execute a:command redir END + call v:lua.vim.notify("command output captured to register m", "info", {'title': 'nvim-config'}) endfunction " Edit all files matching the given patterns.