Lines Matching refs:import
11 " Complete basic syntax along with import statements
12 " i.e. "import url<c-x,c-o>"
37 " * Fixed import handling when flattening scope
92 import sys, tokenize, cStringIO, types
93 from token import NAME, DEDENT, NEWLINE, STRING
104 import vim
319 if l.startswith('import'): str += l+'\n'
324 if not l.startswith('import'): str += l+'\n'
575 elif token == 'import':
578 loc = "import %s" % mod
584 if not mod or token != "import":
589 loc = "from %s import %s" % (mod,name)