Beispiel #1
0
 def get_completer_words(self, target_dir):
     if not tree.local_isabspath(target_dir):
         target_dir = os.path.join(context.get_lwd(), target_dir)
     parent_dir, prefix = tree.local_splitpath(target_dir)
     sub_dirs = filter(lambda x:len(prefix) == 0 or x.startswith(prefix),
                       tree.local_listdir(parent_dir))
     _logger.debug(sub_dirs)
     return map(lambda x:'%s%s' % (x,os.sep), sub_dirs)
Beispiel #2
0
 def execute(self, args=[]):
     target_dir = args[0] if len(args) > 0 else ''
     lwd = context.get_lwd()
     if tree.local_isabspath(target_dir):
         lwd = target_dir
     else:
         lwd = os.path.join(lwd, target_dir)
     lwd = tree.local_abspath(lwd)
     if not lwd.endswith(os.sep):
         lwd += os.sep
     context.set_lwd(lwd)