Compare commits

..

2 Commits

Author SHA1 Message Date
Jeremy Dormitzer
6bbd60b89e Add forward-button binding in Helpful buffers 2021-02-21 23:15:07 -05:00
Jeremy Dormitzer
99d2981753 Make tab-completion use company 2021-02-21 23:14:51 -05:00
2 changed files with 5 additions and 2 deletions

View File

@ -11,6 +11,7 @@
:general
([remap describe-function] #'helpful-callable)
([remap describe-variable] #'helpful-variable)
([remap describe-key] #'helpful-key))
([remap describe-key] #'helpful-key)
(normal helpful-mode-map "TAB" #'forward-button))
(provide 'init-help)

View File

@ -9,7 +9,9 @@
(setq tab-always-indent 'complete)
(evil-collection-company-setup)
:custom
(company-idle-delay 0.1))
(company-idle-delay 0.3)
:general
([remap indent-for-tab-command] #'company-indent-or-complete-common))
;; Flycheck gives you error squigglies
(use-package flycheck