Ver a proveniência

Do not enable company-mode in term buffer

master
10sr há 3 anos
ascendente
cometimento
149edcd362
Assinados por: 10sr ID da chave GPG: 7BEC428194130EB2
1 ficheiros alterados com 7 adições e 5 eliminações
  1. +7
    -5
      emacs.el

+ 7
- 5
emacs.el Ver ficheiro

@@ -1574,13 +1574,15 @@ ORIG-FUNC is the target function, and ARGS is the argument when it is called."
(when (fboundp 'global-company-mode)
(add-hook 'after-first-visit-hook
'global-company-mode))
;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
;; https://qiita.com/yuze/items/a145b1e3edb6d0c24cbf
(set-variable 'company-idle-delay nil)
(set-variable 'company-minimum-prefix-length 2)
(set-variable 'company-selection-wrap-around t)
(set-variable 'company-global-modes '(not term-char-mode
term-line-mode))
(declare-function company-manual-begin "company")
(with-eval-after-load 'company
;; http://qiita.com/sune2/items/b73037f9e85962f5afb7
;; https://qiita.com/yuze/items/a145b1e3edb6d0c24cbf
(set-variable 'company-idle-delay nil)
(set-variable 'company-minimum-prefix-length 2)
(set-variable 'company-selection-wrap-around t)

(defvar company-mode-map)
(define-key company-mode-map (kbd "C-i") 'company-indent-or-complete-common)


Carregando…
Cancelar
Guardar