diff options
author | Alan Pearce | 2017-04-27 10:59:59 +0200 |
---|---|---|
committer | Alan Pearce | 2017-04-27 10:59:59 +0200 |
commit | cff2e1af757994b2b992752245cb505e33775cbe (patch) | |
tree | d6f36072f36763d6c7a8c5c326ff7ac4c402ab07 /emacs | |
parent | 9b369edd4389881ef2010b97c201c1262fb97158 (diff) | |
download | dotfiles-cff2e1af757994b2b992752245cb505e33775cbe.tar.lz dotfiles-cff2e1af757994b2b992752245cb505e33775cbe.tar.zst dotfiles-cff2e1af757994b2b992752245cb505e33775cbe.zip |
Emacs: Enable next/previous wrap-around in company popups
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.org | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index eaa6b29..066ed15 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -949,7 +949,8 @@ seems to work perfectly well for me. company-begin-commands '(self-insert-command) company-auto-complete #'company-explicit-action-p company-auto-complete-chars '(?\ ?\( ?\) ?.) - company-tooltip-align-annotations t))) + company-tooltip-align-annotations t + company-selection-wrap-around t))) #+END_SRC #+BEGIN_SRC emacs-lisp |