mirror of
https://github.com/zoriya/auto-save.nvim.git
synced 2026-08-06 14:18:06 +00:00
13 lines
156 B
Lua
13 lines
156 B
Lua
local api = vim.api
|
|
|
|
api.nvim_exec(
|
|
[[
|
|
function! g:AutoSaveClearCommandLine(timer)
|
|
if mode() != 'c'
|
|
echon ''
|
|
endif
|
|
endfunction
|
|
]],
|
|
false
|
|
)
|