1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Reduce timeout for nvim-notify

This commit is contained in:
jdhao 2021-08-20 01:12:35 +08:00
parent 30774cac5b
commit 42a0663184
5 changed files with 8 additions and 6 deletions

View File

@ -15,7 +15,7 @@ function! buf_utils#GoToBuffer(count, direction) abort
" we are essentially mixing Lua and vim script. We need to make sure that " we are essentially mixing Lua and vim script. We need to make sure that
" args inside vim.notify() are valid vim values. The conversion from vim " args inside vim.notify() are valid vim values. The conversion from vim
" value to lua value will be done by Nvim. See also https://github.com/neovim/neovim/pull/11338. " value to lua value will be done by Nvim. See also https://github.com/neovim/neovim/pull/11338.
call v:lua.vim.notify('Invalid bufnr: ' . a:count, 'error', {'title': 'nvim-config'}) call v:lua.vim.notify('Invalid bufnr: ' . a:count, 'error', {'title': 'nvim-config', 'timeout': 2500})
return return
endif endif

View File

@ -32,8 +32,8 @@ augroup END
" https://github.com/vim/vim/issues/4379 " https://github.com/vim/vim/issues/4379
augroup non_utf8_file_warn augroup non_utf8_file_warn
autocmd! autocmd!
" we can not `lua vim.notify()`: it will error out E5107 parsing lua. " we can not use `lua vim.notify()`: it will error out E5107 parsing lua.
autocmd BufRead * if &fileencoding != 'utf-8' | call v:lua.vim.notify('File not in UTF-8 format!', 'warn', {'title': 'nvim-config'}) | endif autocmd BufRead * if &fileencoding != 'utf-8' | call v:lua.vim.notify('File not in UTF-8 format!', 'warn', {'title': 'nvim-config', 'timeout': 2500}) | endif
augroup END augroup END
" Automatically reload the file if it is changed outside of Nvim, see " Automatically reload the file if it is changed outside of Nvim, see
@ -43,7 +43,7 @@ augroup END
" https://vi.stackexchange.com/a/20397/15292. " https://vi.stackexchange.com/a/20397/15292.
augroup auto_read augroup auto_read
autocmd! autocmd!
autocmd FileChangedShellPost * call v:lua.vim.notify("File changed on disk. Buffer reloaded!", 'warn', {'title': 'nvim-config'}) autocmd FileChangedShellPost * call v:lua.vim.notify("File changed on disk. Buffer reloaded!", 'warn', {'title': 'nvim-config', 'timeout': 2500})
autocmd FocusGained,CursorHold * if getcmdwintype() == '' | checktime | endif autocmd FocusGained,CursorHold * if getcmdwintype() == '' | checktime | endif
augroup END augroup END

View File

@ -102,7 +102,7 @@ inoremap <expr> <s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
" Edit and reload init.vim quickly " Edit and reload init.vim quickly
nnoremap <silent> <leader>ev :<C-U>tabnew $MYVIMRC <bar> tcd %:h<cr> 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> 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'})<cr> \ call v:lua.vim.notify("Nvim config successfully reloaded!", 'info', {'title': 'nvim-config', 'timeout': 2500})<cr>
" Reselect the text that has just been pasted, see also https://stackoverflow.com/a/4317090/6064933. " Reselect the text that has just been pasted, see also https://stackoverflow.com/a/4317090/6064933.
nnoremap <expr> <leader>v printf('`[%s`]', getregtype()[0]) nnoremap <expr> <leader>v printf('`[%s`]', getregtype()[0])

View File

@ -70,7 +70,8 @@ let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme)
if has_key(s:my_theme_dict, s:theme) if has_key(s:my_theme_dict, s:theme)
execute 'call ' . s:colorscheme_func execute 'call ' . s:colorscheme_func
else else
call v:lua.vim.notify('Invalid colorscheme function: ' . s:colorscheme_func, 'error', {'title': 'nvim-config'}) let s:msg = "Invalid colorscheme function: " . s:colorscheme_func
call v:lua.vim.notify(s:msg, 'error', {'title': 'nvim-config', 'timeout': 2500})
endif endif
"}} "}}
"} "}

View File

@ -65,6 +65,7 @@ local custom_attach = function(client, bufnr)
local msg = string.format("Language server %s started!", client.name) local msg = string.format("Language server %s started!", client.name)
vim.api.nvim_echo({ { msg, "MoreMsg" } }, false, {}) vim.api.nvim_echo({ { msg, "MoreMsg" } }, false, {})
-- vim.notify(msg, 'info', {title = 'Nvim-config', timeout = 2500})
end end
local capabilities = vim.lsp.protocol.make_client_capabilities() local capabilities = vim.lsp.protocol.make_client_capabilities()