summary refs log tree commit diff stats
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2017-04-27 10:59:59 +0200
committerAlan Pearce2017-04-27 10:59:59 +0200
commitcff2e1af757994b2b992752245cb505e33775cbe (patch)
treed6f36072f36763d6c7a8c5c326ff7ac4c402ab07 /emacs/.emacs.d
parent9b369edd4389881ef2010b97c201c1262fb97158 (diff)
downloaddotfiles-cff2e1af757994b2b992752245cb505e33775cbe.tar.lz
dotfiles-cff2e1af757994b2b992752245cb505e33775cbe.tar.zst
dotfiles-cff2e1af757994b2b992752245cb505e33775cbe.zip
Emacs: Enable next/previous wrap-around in company popups
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/init.org3
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