Minor, general refactor

Remove redundant keybinds, unused letvars, and fix
doom-module-load-path's docstring referencing its former signature.
This commit is contained in:
Henrik Lissner 2018-06-05 11:22:20 +02:00
parent 8124d5a893
commit c9bfb58369
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 5 additions and 10 deletions

View file

@ -133,9 +133,7 @@
"C-s" #'company-filter-candidates
"C-S-s" #'company-search-candidates
"C-SPC" #'company-complete-common
"TAB" #'company-complete-common-or-cycle
[tab] #'company-complete-common-or-cycle
"S-TAB" #'company-select-previous
[backtab] #'company-select-previous)
;; Automatically applies to `company-filter-map'
(:map company-search-map
@ -418,8 +416,8 @@
[backspace] #'+snippets/delete-backward-char
[delete] #'+snippets/delete-forward-char-or-field)
(:map yas-minor-mode-map
:ig [(tab)] yas-maybe-expand
:v [(tab)] #'yas-insert-snippet
:ig [tab] yas-maybe-expand
:v [tab] #'yas-insert-snippet
:ig "TAB" yas-maybe-expand
:v "TAB" #'yas-insert-snippet))