Browse Source

Update

master
10sr 5 years ago
parent
commit
82faff8072
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      emacs.el

+ 5
- 3
emacs.el View File

@@ -1054,15 +1054,17 @@ found, otherwise returns nil."
(define-key company-active-map (kbd "C-i") 'company-complete-selection) (define-key company-active-map (kbd "C-i") 'company-complete-selection)
(define-key company-active-map (kbd "C-f") 'company-complete-selection) (define-key company-active-map (kbd "C-f") 'company-complete-selection)


(defvar company-mode)
(defvar company-candidates) (defvar company-candidates)
(defvar company-candidates-length) (defvar company-candidates-length)
;; (popup-tip "Hello, World!") ;; (popup-tip "Hello, World!")
(require 'popup nil t)
(defun my-company-length-popup-tip () (defun my-company-length-popup-tip ()
"Show tooltip of candidate length." "Show tooltip of candidate length."
(interactive) (interactive)
;; Do nothing when already in company completion
(unless company-candidates
(when (and (require 'popup nil t)
company-mode
;; Do nothing when already in company completion
(not company-candidates))
(let ((l nil)) (let ((l nil))
(unwind-protect (unwind-protect
(progn (progn


Loading…
Cancel
Save