"pythoncomplete.vim - Omni Completion for python" Maintainer: Aaron Griffin <aaronmgriffin@gmail.com>" Version: 0.9" Last Updated: 18 Jun 2009"" Changes" TODO:" 'info' item output can use some formatting work" Add an "unsafe eval" mode, to allow for return type evaluation" Complete basic syntax along with import statements" i.e. "import url<c-x,c-o>"" Continue parsing on invalid line??"" v 0.9" * Fixed docstring parsing for classes and functions" * Fixed parsing of *args and **kwargs type arguments" * Better function param parsing to handle things like tuples and" lambda defaults args"" v 0.8" * Fixed an issue where the FIRST assignment was always used instead of" using a subsequent assignment for a variable" * Fixed a scoping issue when working inside a parameterless function""" v 0.7" * Fixed function list sorting (_ and __ at the bottom)" * Removed newline removal from docs. It appears vim handles these better in" recent patches"" v 0.6:" * Fixed argument completion" * Removed the 'kind' completions, as they are better indicated" with real syntax" * Added tuple assignment parsing (whoops, that was forgotten)" * Fixed import handling when flattening scope"" v 0.5:" Yeah, I skipped a version number - 0.4 was never public." It was a bugfix version on top of 0.3. This is a complete" rewrite."if !has('python')echo "Error: Required vim compiled with +python"finishendiffunction! pythoncomplete#Complete(findstart, base)"findstart = 1 when we need to get the text lengthif a:findstart == 1let line = getline('.')let idx = col('.')while idx > 0let idx -= 1let c = line[idx]if c =~ '\w'continueelseif ! c =~ '\.'let idx = -1breakelsebreakendifendwhilereturn idx"findstart = 0 when we need to return the list of completionselse"vim no longer moves the cursor upon completion... fix thatlet line = getline('.')let idx = col('.')let cword = ''while idx > 0let idx -= 1let c = line[idx]if c =~ '\w' || c =~ '\.'let cword = c . cwordcontinueelseif strlen(cword) > 0 || idx == 0breakendifendwhileexecute "python vimcomplete('" . cword . "', '" . a:base . "')"return g:pythoncomplete_completionsendifendfunctionfunction! s:DefPython()python << PYTHONEOFimport sys, tokenize, cStringIO, typesfrom token import NAME, DEDENT, NEWLINE, STRINGdebugstmts=[]def dbg(s): debugstmts.append(s)def showdbg():for d in debugstmts: print "DBG: %s " % ddef vimcomplete(context,match):global debugstmtsdebugstmts = []try:import vimdef complsort(x,y):try:xa = x['abbr']ya = y['abbr']if xa[0] == '_':if xa[1] == '_' and ya[0:2] == '__':return xa > yaelif ya[0:2] == '__':return -1elif y[0] == '_':return xa > yaelse:return 1elif ya[0] == '_':return -1else:return xa > yaexcept:return 0cmpl = Completer()cmpl.evalsource('\n'.join(vim.current.buffer),vim.eval("line('.')"))all = cmpl.get_completions(context,match)all.sort(complsort)dictstr = '['# have to do this for double quotingfor cmpl in all:dictstr += '{'for x in cmpl: dictstr += '"%s":"%s",' % (x,cmpl[x])dictstr += '"icase":0},'if dictstr[-1] == ',': dictstr = dictstr[:-1]dictstr += ']'#dbg("dict: %s" % dictstr)vim.command("silent let g:pythoncomplete_completions = %s" % dictstr)#dbg("Completion dict:\n%s" % all)except vim.error:dbg("VIM Error: %s" % vim.error)class Completer(object):def __init__(self):self.compldict = {}self.parser = PyParser()def evalsource(self,text,line=0):sc = self.parser.parse(text,line)src = sc.get_code()dbg("source: %s" % src)try: exec(src) in self.compldictexcept: dbg("parser: %s, %s" % (sys.exc_info()[0],sys.exc_info()[1]))for l in sc.locals:try: exec(l) in self.compldictexcept: dbg("locals: %s, %s [%s]" % (sys.exc_info()[0],sys.exc_info()[1],l))def _cleanstr(self,doc):return doc.replace('"',' ').replace("'",' ')def get_arguments(self,func_obj):def _ctor(obj):try: return class_ob.__init__.im_funcexcept AttributeError:for base in class_ob.__bases__:rc = _find_constructor(base)if rc is not None: return rcreturn Nonearg_offset = 1if type(func_obj) == types.ClassType: func_obj = _ctor(func_obj)elif type(func_obj) == types.MethodType: func_obj = func_obj.im_funcelse: arg_offset = 0arg_text=''if type(func_obj) in [types.FunctionType, types.LambdaType]:try:cd = func_obj.func_codereal_args = cd.co_varnames[arg_offset:cd.co_argcount]defaults = func_obj.func_defaults or ''defaults = map(lambda name: "=%s" % name, defaults)defaults = [""] * (len(real_args)-len(defaults)) + defaultsitems = map(lambda a,d: a+d, real_args, defaults)if func_obj.func_code.co_flags & 0x4:items.append("...")if func_obj.func_code.co_flags & 0x8:items.append("***")arg_text = (','.join(items)) + ')'except:dbg("arg completion: %s: %s" % (sys.exc_info()[0],sys.exc_info()[1]))passif len(arg_text) == 0:# The doc string sometimes contains the function signature# this works for alot of C modules that are part of the# standard librarydoc = func_obj.__doc__if doc:doc = doc.lstrip()pos = doc.find('\n')if pos > 0:sigline = doc[:pos]lidx = sigline.find('(')ridx = sigline.find(')')if lidx > 0 and ridx > 0:arg_text = sigline[lidx+1:ridx] + ')'if len(arg_text) == 0: arg_text = ')'return arg_textdef get_completions(self,context,match):dbg("get_completions('%s','%s')" % (context,match))stmt = ''if context: stmt += str(context)if match: stmt += str(match)try:result = Noneall = {}ridx = stmt.rfind('.')if len(stmt) > 0 and stmt[-1] == '(':result = eval(_sanitize(stmt[:-1]), self.compldict)doc = result.__doc__if doc is None: doc = ''args = self.get_arguments(result)return [{'word':self._cleanstr(args),'info':self._cleanstr(doc)}]elif ridx == -1:match = stmtall = self.compldictelse:match = stmt[ridx+1:]stmt = _sanitize(stmt[:ridx])result = eval(stmt, self.compldict)all = dir(result)dbg("completing: stmt:%s" % stmt)completions = []try: maindoc = result.__doc__except: maindoc = ' 'if maindoc is None: maindoc = ' 'for m in all:if m == "_PyCmplNoType": continue #this is internaltry:dbg('possible completion: %s' % m)if m.find(match) == 0:if result is None: inst = all[m]else: inst = getattr(result,m)try: doc = inst.__doc__except: doc = maindoctypestr = str(inst)if doc is None or doc == '': doc = maindocwrd = m[len(match):]c = {'word':wrd, 'abbr':m, 'info':self._cleanstr(doc)}if "function" in typestr:c['word'] += '('c['abbr'] += '(' + self._cleanstr(self.get_arguments(inst))elif "method" in typestr:c['word'] += '('c['abbr'] += '(' + self._cleanstr(self.get_arguments(inst))elif "module" in typestr:c['word'] += '.'elif "class" in typestr:c['word'] += '('c['abbr'] += '('completions.append(c)except:i = sys.exc_info()dbg("inner completion: %s,%s [stmt='%s']" % (i[0],i[1],stmt))return completionsexcept:i = sys.exc_info()dbg("completion: %s,%s [stmt='%s']" % (i[0],i[1],stmt))return []class Scope(object):def __init__(self,name,indent,docstr=''):self.subscopes = []self.docstr = docstrself.locals = []self.parent = Noneself.name = nameself.indent = indentdef add(self,sub):#print 'push scope: [%s@%s]' % (sub.name,sub.indent)sub.parent = selfself.subscopes.append(sub)return subdef doc(self,str):""" Clean up a docstring """d = str.replace('\n',' ')d = d.replace('\t',' ')while d.find(' ') > -1: d = d.replace(' ',' ')while d[0] in '"\'\t ': d = d[1:]while d[-1] in '"\'\t ': d = d[:-1]dbg("Scope(%s)::docstr = %s" % (self,d))self.docstr = ddef local(self,loc):self._checkexisting(loc)self.locals.append(loc)def copy_decl(self,indent=0):""" Copy a scope's declaration only, at the specified indent level - not local variables """return Scope(self.name,indent,self.docstr)def _checkexisting(self,test):"Convienance function... keep out duplicates"if test.find('=') > -1:var = test.split('=')[0].strip()for l in self.locals:if l.find('=') > -1 and var == l.split('=')[0].strip():self.locals.remove(l)def get_code(self):str = ""if len(self.docstr) > 0: str += '"""'+self.docstr+'"""\n'for l in self.locals:if l.startswith('import'): str += l+'\n'str += 'class _PyCmplNoType:\n def __getattr__(self,name):\n return None\n'for sub in self.subscopes:str += sub.get_code()for l in self.locals:if not l.startswith('import'): str += l+'\n'return strdef pop(self,indent):#print 'pop scope: [%s] to [%s]' % (self.indent,indent)outer = selfwhile outer.parent != None and outer.indent >= indent:outer = outer.parentreturn outerdef currentindent(self):#print 'parse current indent: %s' % self.indentreturn ' '*self.indentdef childindent(self):#print 'parse child indent: [%s]' % (self.indent+1)return ' '*(self.indent+1)class Class(Scope):def __init__(self, name, supers, indent, docstr=''):Scope.__init__(self,name,indent, docstr)self.supers = supersdef copy_decl(self,indent=0):c = Class(self.name,self.supers,indent, self.docstr)for s in self.subscopes:c.add(s.copy_decl(indent+1))return cdef get_code(self):str = '%sclass %s' % (self.currentindent(),self.name)if len(self.supers) > 0: str += '(%s)' % ','.join(self.supers)str += ':\n'if len(self.docstr) > 0: str += self.childindent()+'"""'+self.docstr+'"""\n'if len(self.subscopes) > 0:for s in self.subscopes: str += s.get_code()else:str += '%spass\n' % self.childindent()return strclass Function(Scope):def __init__(self, name, params, indent, docstr=''):Scope.__init__(self,name,indent, docstr)self.params = paramsdef copy_decl(self,indent=0):return Function(self.name,self.params,indent, self.docstr)def get_code(self):str = "%sdef %s(%s):\n" % \(self.currentindent(),self.name,','.join(self.params))if len(self.docstr) > 0: str += self.childindent()+'"""'+self.docstr+'"""\n'str += "%spass\n" % self.childindent()return strclass PyParser:def __init__(self):self.top = Scope('global',0)self.scope = self.topself.parserline = 0def _parsedotname(self,pre=None):#returns (dottedname, nexttoken)name = []if pre is None:tokentype, token, indent = self.next()if tokentype != NAME and token != '*':return ('', token)else: token = prename.append(token)while True:tokentype, token, indent = self.next()if token != '.': breaktokentype, token, indent = self.next()if tokentype != NAME: breakname.append(token)return (".".join(name), token)def _parseimportlist(self):imports = []while True:name, token = self._parsedotname()if not name: breakname2 = ''if token == 'as': name2, token = self._parsedotname()imports.append((name, name2))while token != "," and "\n" not in token:tokentype, token, indent = self.next()if token != ",": breakreturn importsdef _parenparse(self):name = ''names = []level = 1while True:tokentype, token, indent = self.next()if token in (')', ',') and level == 1:if '=' not in name: name = name.replace(' ', '')names.append(name.strip())name = ''if token == '(':level += 1name += "("elif token == ')':level -= 1if level == 0: breakelse: name += ")"elif token == ',' and level == 1:passelse:name += "%s " % str(token)return namesdef _parsefunction(self,indent):self.scope=self.scope.pop(indent)tokentype, fname, ind = self.next()if tokentype != NAME: return Nonetokentype, open, ind = self.next()if open != '(': return Noneparams=self._parenparse()tokentype, colon, ind = self.next()if colon != ':': return Nonereturn Function(fname,params,indent)def _parseclass(self,indent):self.scope=self.scope.pop(indent)tokentype, cname, ind = self.next()if tokentype != NAME: return Nonesuper = []tokentype, next, ind = self.next()if next == '(':super=self._parenparse()elif next != ':': return Nonereturn Class(cname,super,indent)def _parseassignment(self):assign=''tokentype, token, indent = self.next()if tokentype == tokenize.STRING or token == 'str':return '""'elif token == '(' or token == 'tuple':return '()'elif token == '[' or token == 'list':return '[]'elif token == '{' or token == 'dict':return '{}'elif tokentype == tokenize.NUMBER:return '0'elif token == 'open' or token == 'file':return 'file'elif token == 'None':return '_PyCmplNoType()'elif token == 'type':return 'type(_PyCmplNoType)' #only for method resolutionelse:assign += tokenlevel = 0while True:tokentype, token, indent = self.next()if token in ('(','{','['):level += 1elif token in (']','}',')'):level -= 1if level == 0: breakelif level == 0:if token in (';','\n'): breakassign += tokenreturn "%s" % assigndef next(self):type, token, (lineno, indent), end, self.parserline = self.gen.next()if lineno == self.curline:#print 'line found [%s] scope=%s' % (line.replace('\n',''),self.scope.name)self.currentscope = self.scopereturn (type, token, indent)def _adjustvisibility(self):newscope = Scope('result',0)scp = self.currentscopewhile scp != None:if type(scp) == Function:slice = 0#Handle 'self' paramsif scp.parent != None and type(scp.parent) == Class:slice = 1newscope.local('%s = %s' % (scp.params[0],scp.parent.name))for p in scp.params[slice:]:i = p.find('=')if len(p) == 0: continuepvar = ''ptype = ''if i == -1:pvar = pptype = '_PyCmplNoType()'else:pvar = p[:i]ptype = _sanitize(p[i+1:])if pvar.startswith('**'):pvar = pvar[2:]ptype = '{}'elif pvar.startswith('*'):pvar = pvar[1:]ptype = '[]'newscope.local('%s = %s' % (pvar,ptype))for s in scp.subscopes:ns = s.copy_decl(0)newscope.add(ns)for l in scp.locals: newscope.local(l)scp = scp.parentself.currentscope = newscopereturn self.currentscope#p.parse(vim.current.buffer[:],vim.eval("line('.')"))def parse(self,text,curline=0):self.curline = int(curline)buf = cStringIO.StringIO(''.join(text) + '\n')self.gen = tokenize.generate_tokens(buf.readline)self.currentscope = self.scopetry:freshscope=Truewhile True:tokentype, token, indent = self.next()#dbg( 'main: token=[%s] indent=[%s]' % (token,indent))if tokentype == DEDENT or token == "pass":self.scope = self.scope.pop(indent)elif token == 'def':func = self._parsefunction(indent)if func is None:print "function: syntax error..."continuedbg("new scope: function")freshscope = Trueself.scope = self.scope.add(func)elif token == 'class':cls = self._parseclass(indent)if cls is None:print "class: syntax error..."continuefreshscope = Truedbg("new scope: class")self.scope = self.scope.add(cls)elif token == 'import':imports = self._parseimportlist()for mod, alias in imports:loc = "import %s" % modif len(alias) > 0: loc += " as %s" % aliasself.scope.local(loc)freshscope = Falseelif token == 'from':mod, token = self._parsedotname()if not mod or token != "import":print "from: syntax error..."continuenames = self._parseimportlist()for name, alias in names:loc = "from %s import %s" % (mod,name)if len(alias) > 0: loc += " as %s" % aliasself.scope.local(loc)freshscope = Falseelif tokentype == STRING:if freshscope: self.scope.doc(token)elif tokentype == NAME:name,token = self._parsedotname(token)if token == '=':stmt = self._parseassignment()dbg("parseassignment: %s = %s" % (name, stmt))if stmt != None:self.scope.local("%s = %s" % (name,stmt))freshscope = Falseexcept StopIteration: #thrown on EOFpassexcept:dbg("parse error: %s, %s @ %s" %(sys.exc_info()[0], sys.exc_info()[1], self.parserline))return self._adjustvisibility()def _sanitize(str):val = ''level = 0for c in str:if c in ('(','{','['):level += 1elif c in (']','}',')'):level -= 1elif level == 0:val += creturn valsys.path.extend(['.','..'])PYTHONEOFendfunctioncall s:DefPython()" vim: set et ts=4:
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。