Lines Matching full:options
71 tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
74 if 'functions' in self.options:
75 self.options['identifiers'] = self.options.get('functions')
78 if 'export' in self.options:
80 export_file_patterns = str(self.options.get('export')).split()
81 elif 'internal' in self.options:
83 export_file_patterns = str(self.options.get('internal')).split()
84 elif 'doc' in self.options:
85 cmd += ['-function', str(self.options.get('doc'))]
86 elif 'identifiers' in self.options:
87 identifiers = self.options.get('identifiers').split()
94 if 'no-identifiers' in self.options:
95 no_identifiers = self.options.get('no-identifiers').split()