aboutsummaryrefslogtreecommitdiff
path: root/autoload/utils.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-10-23 20:57:00 +0800
committerjdhao <jdhao@hotmail.com>2021-10-23 20:57:00 +0800
commit51a004e8655310242425e3c59d3664383ba08bf6 (patch)
tree21da4f4197b481174bf074c317d9363927f23ac2 /autoload/utils.vim
parent841429da331e3be7d5fd7f14c2b8f20e15407e5b (diff)
add notification for Redir command
Diffstat (limited to 'autoload/utils.vim')
-rw-r--r--autoload/utils.vim1
1 files changed, 1 insertions, 0 deletions
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.