示例#1
0
 def matches(self, cursor_offset, line, **kwargs):
     cs = lineparts.current_string(cursor_offset, line)
     if cs is None:
         return None
     matches = set()
     username = cs.word.split(os.path.sep, 1)[0]
     user_dir = os.path.expanduser(username)
     for filename in self.safe_glob(os.path.expanduser(cs.word)):
         if os.path.isdir(filename):
             filename += os.path.sep
         if cs.word.startswith('~'):
             filename = username + filename[len(user_dir):]
         matches.add(filename)
     return matches
示例#2
0
 def matches(self, cursor_offset, line, **kwargs):
     cs = lineparts.current_string(cursor_offset, line)
     if cs is None:
         return None
     matches = set()
     username = cs.word.split(os.path.sep, 1)[0]
     user_dir = os.path.expanduser(username)
     for filename in self.safe_glob(os.path.expanduser(cs.word)):
         if os.path.isdir(filename):
             filename += os.path.sep
         if cs.word.startswith('~'):
             filename = username + filename[len(user_dir):]
         matches.add(filename)
     return matches
示例#3
0
 def locate(self, current_offset, line):
     return lineparts.current_string(current_offset, line)
示例#4
0
 def locate(self, current_offset, line):
     return lineparts.current_string(current_offset, line)