aboutsummaryrefslogtreecommitdiff
path: root/core/mappings.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-10-18 22:32:38 +0800
committerjdhao <jdhao@hotmail.com>2021-10-18 22:32:38 +0800
commit646453939941d92b077af56ce1d40793120bf97a (patch)
tree6911802748db0288dfc9b898cc958bbd13e5aea5 /core/mappings.vim
parent30ca579ee9eeb38bc759007fc3d16e52b0e43d3e (diff)
nvim-notify update
Diffstat (limited to 'core/mappings.vim')
-rw-r--r--core/mappings.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mappings.vim b/core/mappings.vim
index d973ac0..82ba59a 100644
--- a/core/mappings.vim
+++ b/core/mappings.vim
@@ -104,7 +104,7 @@ inoremap <expr> <s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
" Edit and reload init.vim quickly
nnoremap <silent> <leader>ev :<C-U>tabnew $MYVIMRC <bar> tcd %:h<cr>
nnoremap <silent> <leader>sv :<C-U>silent update $MYVIMRC <bar> source $MYVIMRC <bar>
- \ call v:lua.vim.notify("Nvim config successfully reloaded!", 'info', {'title': 'nvim-config', 'timeout': 2500})<cr>
+ \ call v:lua.vim.notify("Nvim config successfully reloaded!", 'info', {'title': 'nvim-config'})<cr>
" Reselect the text that has just been pasted, see also https://stackoverflow.com/a/4317090/6064933.
nnoremap <expr> <leader>v printf('`[%s`]', getregtype()[0])