update the splitter and readline delims when greedy is changed
(self, change)
| 997 | |
| 998 | @observe('greedy') |
| 999 | def _greedy_changed(self, change): |
| 1000 | """update the splitter and readline delims when greedy is changed""" |
| 1001 | if change['new']: |
| 1002 | self.splitter.delims = GREEDY_DELIMS |
| 1003 | else: |
| 1004 | self.splitter.delims = DELIMS |
| 1005 | |
| 1006 | dict_keys_only = Bool(False, |
| 1007 | help="""Whether to show dict key matches only""") |
nothing calls this directly
no outgoing calls
no test coverage detected