这样的事情会起作用。只需创建映射文件类型autocmd
<F4>或您想要保存的文件类型,然后编译并运行该程序即可。它使用exec来构建字符串,并使用shellescape来转义文件名。
autocmd filetype python nnoremap <F4> :w <bar> exec '!python '.shellescape('%')<CR>autocmd filetype c nnoremap <F4> :w <bar> exec '!gcc '.shellescape('%').' -o '.shellescape('%:r').' && ./'.shellescape('%:r')<CR>autocmd filetype cpp nnoremap <F4> :w <bar> exec '!g++ '.shellescape('%').' -o '.shellescape('%:r').' && ./'.shellescape('%:r')<CR>
%是当前缓冲区的文件名。
%:r是没有扩展名的缓冲区文件名
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)