我使用 vim + grip 用 chrome Preview
我在vimrc 加一个函数如下
func Vim_Markdown_Preview()
let b:curr_file = expand('%:p')
call system('grip "' . b:curr_file . '" &')
endfunc
nnoremap <leader>m :call Vim_Markdown_Preview()<CR>
vim xxxx.md 之后call Vim_Markdown_Preview 透过 chrome http://localhost:6419/
可以即时预览 , 但是我退出 vim 无法关闭 grip
我这边是用了 grip xxxx.md & 丢到 background , 要怎么退出vim 时候 kill 这个 grip
process ?
有比较简单的作法嘛?
谢谢