示例#1
0
文件: ertshell.py 项目: edbru/ert
 def complete_load_config(self, text, line, begidx, endidx):
     argument = extractFullArgument(line, endidx)
     return getPossibleFilenameCompletions(argument)
示例#2
0
文件: summary_keys.py 项目: edbru/ert
 def complete_plot(self, text, line, begidx, endidx):
     key = extractFullArgument(line, endidx)
     return autoCompleteListWithSeparator(key, self.summaryKeys())
示例#3
0
 def complete_load(self, text, line, begidx, endidx):
     argument = extractFullArgument(line, endidx)
     return getPossibleFilenameCompletions(argument)
示例#4
0
 def complete_select(self, text, line, begidx, endidx):
     key = extractFullArgument(line, endidx)
     return autoCompleteListWithSeparator(key, self.getAnalysisModules())
示例#5
0
文件: gen_kw_keys.py 项目: eoia/ert
 def complete_print(self, text, line, begidx, endidx):
     key = extractFullArgument(line, endidx)
     return autoCompleteListWithSeparator(key, self.fetchSupportedKeys())
示例#6
0
 def complete_print(self, text, line, begidx, endidx):
     key = extractFullArgument(line, endidx)
     return autoCompleteListWithSeparator(key, self.fetchSupportedKeys())
示例#7
0
 def complete_select(self, text, line, begidx, endidx):
     key = extractFullArgument(line, endidx)
     return autoCompleteListWithSeparator(key, self.getAnalysisModules())
示例#8
0
 def complete_plot_quantile(self, text, line, begidx, endidx):
     key = extractFullArgument(line, endidx)
     return autoCompleteListWithSeparator(key, self.summaryKeys())