소스 검색

Update

master
10sr 5 년 전
부모
커밋
82faff8072
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      emacs.el

+ 5
- 3
emacs.el 파일 보기

@@ -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-f") 'company-complete-selection)

(defvar company-mode)
(defvar company-candidates)
(defvar company-candidates-length)
;; (popup-tip "Hello, World!")
(require 'popup nil t)
(defun my-company-length-popup-tip ()
"Show tooltip of candidate length."
(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))
(unwind-protect
(progn


불러오는 중...
취소
저장