diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2022-06-21 22:15:34 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2022-06-21 22:15:34 +0200 |
| commit | dcc2ccfa59ea1748b2c6145ec7d6450f54d8ece3 (patch) | |
| tree | 8d4d6dc5799c65bd180f75cfa33a1149bb9a35d2 | |
| parent | a1638df651872acb9a8df0c97704bf321e85735a (diff) | |
Fix dot chaining (Fix #196)
| -rw-r--r-- | corfu.el | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1193,8 +1193,7 @@ See `completion-in-region' for the arguments BEG, END, TABLE, PRED." (when corfu--auto-timer (cancel-timer corfu--auto-timer) (setq corfu--auto-timer nil)) - (when (and (not completion-in-region-mode) - (not defining-kbd-macro) + (when (and (not defining-kbd-macro) (not buffer-read-only) (corfu--match-symbol-p corfu-auto-commands this-command) (corfu--popup-support-p)) |
