mirror of
https://github.com/morten-olsen/share.nvim.git
synced 2026-02-08 01:36:30 +01:00
12 lines
305 B
VimL
12 lines
305 B
VimL
" function! ReloadAlpha()
|
|
" lua << EOF
|
|
" for k in pairs(package.loaded) do
|
|
" if k:match("^share.nvim") then
|
|
" package.loaded[k] = nil
|
|
" end
|
|
" end
|
|
" EOF
|
|
" endfunction
|
|
" nnoremap <Leader>pr :call ReloadAlpha()<CR>
|
|
" vnoremap <Leader>ps :lua require("share").share()<CR>
|