Do not use ivy for completion in regions

This makes eshell completion use drop down menues instead of the standard
complete-until-ambiguous style I am used to.  Moreover, in Org Babel shell
source blocks, ivy completion in region causes a drop down menu of possible
commands to appear after a block has been created and entered for the first
time, which not only is annoying, but also sometimes causes to cursor to
disappear (set `cursor-type' to 'bar to revert).
This commit is contained in:
Daniel - 2020-11-14 11:50:31 +01:00
parent 2622b048b6
commit 18b90d758e
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 2 additions and 1 deletions

View File

@ -2142,7 +2142,8 @@
(counsel-describe-variable . "^") (counsel-describe-variable . "^")
(man . "^") (man . "^")
(woman . "^")) (woman . "^"))
ivy-use-selectable-prompt t) ivy-use-selectable-prompt t
ivy-do-completion-in-region nil)
:config (add-to-list 'ivy-completing-read-handlers-alist :config (add-to-list 'ivy-completing-read-handlers-alist
'(org-capture . completing-read-default))) '(org-capture . completing-read-default)))