Lines Matching refs:import
13 " Complete basic syntax along with import statements
14 " i.e. "import url<c-x,c-o>"
39 " * Fixed import handling when flattening scope
94 import sys, tokenize, io, types
95 from token import NAME, DEDENT, NEWLINE, STRING
106 import vim
301 if l.startswith('import'): str += l+'\n'
306 if not l.startswith('import'): str += l+'\n'
557 elif token == 'import':
560 loc = "import %s" % mod
566 if not mod or token != "import":
571 loc = "from %s import %s" % (mod,name)