摘要:
# encoding: utf-8# module builtins# from (built-in)# by generator 1.138"""Built-in functions, exceptions, and other objects.Noteworthy: None is the `n
阅读全文
posted @ 2016-04-14 22:05
geek3
阅读(1766)
推荐(0)
编辑
摘要:
Python自动补全有vim编辑下和python交互模式下,下面分别介绍如何在这2种情况下实现Tab键自动补全。
一、vim python自动补全插件:pydiction
可以实现下面python代码的自动补全:
简单python关键词补全
python 函数补全带括号
python 模块补全
python 模块内函数,变量补全
from module import sub-module 补全
想为vim启动自动补全需要下载插件,地址如下:
http://vim.sourceforge.net/scripts/script.php?script_id=850
https://github.com/rkulla/pydiction
阅读全文
posted @ 2016-04-14 14:43
geek3
阅读(230)
推荐(0)
编辑