Example #1
0
 def complete_reset(self, text, line, start_idx, end_idx):
     return complete_config_key(self.config, text)
Example #2
0
 def complete_reset(self, text, line, start_idx, end_idx):
     return complete_config_key(self.config, text)
Example #3
0
 def complete_set(self, text, line, start_idx, end_idx):
     if re.match(r'.*attrs.*',line):
         return self._complete_attr(text)
     return complete_config_key(self.config, text)
Example #4
0
 def complete_set(self, text, line, start_idx, end_idx):
     if re.match(r'.*attrs.*', line):
         return self._complete_attr(text)
     return complete_config_key(self.config, text)