Save the config to the config file.
(self)
| 270 | self.theme = self.config_section['theme'] |
| 271 | |
| 272 | def save_config(self): |
| 273 | """Save the config to the config file.""" |
| 274 | self.config_section['match_fuzzy'] = self.model_completer.match_fuzzy |
| 275 | self.config_section['enable_vi_bindings'] = self.enable_vi_bindings |
| 276 | self.config_section['show_completion_columns'] = \ |
| 277 | self.show_completion_columns |
| 278 | self.config_section['show_help'] = self.show_help |
| 279 | self.config_section['theme'] = self.theme |
| 280 | self.config_obj.write() |
| 281 | |
| 282 | @property |
| 283 | def cli(self): |
no outgoing calls