예제 #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
파일: analysis_module.py 프로젝트: eoia/ert
 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())