vim 运行python程序_Vim下一键运行python代码

本文介绍了如何配置Vim,在Windows和Linux环境下通过按F5键快速运行Python程序。在Windows的gvim中,通过修改vimrc文件设置makeprg和errorformat,然后映射F5键执行代码。而在Linux的vim中,定义了一个CompileRunGcc函数,根据文件类型执行相应的编译和运行命令。
摘要由CSDN通过智能技术生成

根据系统将下面代码复制到vim配置文件vimrc中,即可在vim中一键【F5】运行.py文件。

Windows下的gvim

"一键运行代码

function CheckPythonSyntax()

let mp = &makeprg

let ef = &errorformat

let exeFile = expand("%:t")

setlocal makeprg=python\ -u

set efm=%C\ %.%#,%A\ \ File\ \"%f\"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%m

silent make %

copen

" set efm 是设置quickfix的errorformat,以便vim识别

" makeprg 是vim内置的编译命令,可以通过更改来实现编译对应类型文件。具体可参考vim官方说明文件。

" copen是打开quickfix,n用来设置quichfix窗口大小,如 cope5。在错误描述上回车,可以直接跳转到错误行。

let &makeprg = mp

let &errorformat = ef

endfunction

"一个是普通模式下,一个是插入模式下

au filetype python map :w :call CheckPythonSyntax()

au filetype python imap :w :call CheckPythonSyntax()

Linux下的vim

"一键运行代码

map :call CompileRunGcc()

func! CompileRunGcc()

exec "w"

if &filetype == 'c'

exec "!g++ % -o %

exec "!time ./%

elseif &filetype == 'cpp'

exec "!g++ % -o %

exec "!time ./%

elseif &filetype == 'java'

exec "!javac %"

exec "!time java %

elseif &filetype == 'sh'

:!time bash %

elseif &filetype == 'python'

exec "!time python %"

elseif &filetype == 'html'

exec "!firefox % &"

elseif &filetype == 'go'

" exec "!go build %

exec "!time go run %"

elseif &filetype == 'mkd'

exec "!~/.vim/markdown.pl % > %.html &"

exec "!firefox %.html &"

endif

endfunc

原文:https://www.cnblogs.com/enumx/p/12333852.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值