Browse Source

C-tab now company-complete

master
marc 4 years ago
parent
commit
8bc6363d4d
1 changed files with 7 additions and 6 deletions
  1. 13
      init.org

13
init.org

@ -398,12 +398,13 @@ Windows Theme:
(use-package company (use-package company
:defer 1 :defer 1
:bind :bind
(:map company-active-map
("RET" . nil)
([return] . nil)
("TAB" . company-complete-selection)
([tab] . company-complete-selection)
("<right>" . company-complete-common))
(("C-<tab>" . company-complete)
:map company-active-map
("RET" . nil)
([return] . nil)
("TAB" . company-complete-selection)
([tab] . company-complete-selection)
("<right>" . company-complete-common))
:hook :hook
(after-init . global-company-mode) (after-init . global-company-mode)
:config :config

Loading…
Cancel
Save