2014-09-04 22:46:41 +00:00
|
|
|
;; -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
;; Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
;;
|
|
|
|
;; Author: Soonho Kong
|
|
|
|
;;
|
2014-08-26 16:26:29 +00:00
|
|
|
(require 'company)
|
2014-09-04 22:46:41 +00:00
|
|
|
(require 'company-etags)
|
|
|
|
(require 'dash)
|
|
|
|
(require 'dash-functional)
|
|
|
|
(require 'lean-tags)
|
|
|
|
(require 'lean-server)
|
2014-08-26 16:26:29 +00:00
|
|
|
|
2014-09-04 22:46:41 +00:00
|
|
|
(defun company-lean-hook ()
|
|
|
|
(set (make-local-variable 'company-backends) '(company-lean))
|
|
|
|
(setq-local company-tooltip-limit 20) ; bigger popup window
|
|
|
|
(setq-local company-idle-delay .3) ; decrease delay before autocompletion popup shows
|
|
|
|
(setq-local company-echo-delay 0) ; remove annoying blinking
|
|
|
|
(setq-local company-begin-commands '(self-insert-command)) ; start autocompletion only after typing
|
|
|
|
(company-mode t))
|
2014-08-26 16:26:29 +00:00
|
|
|
|
|
|
|
(defun company-lean--prefix ()
|
|
|
|
"Returns the symbol to complete. Also, if point is on a dot,
|
|
|
|
triggers a completion immediately."
|
2014-09-04 22:46:41 +00:00
|
|
|
(let ((prefix (company-grab-symbol)))
|
|
|
|
(when (or
|
2014-09-05 04:04:54 +00:00
|
|
|
(> (length prefix) 3)
|
|
|
|
(string-match "[_.]" prefix))
|
2014-09-04 22:46:41 +00:00
|
|
|
prefix)))
|
2014-08-26 16:26:29 +00:00
|
|
|
|
2014-09-04 22:46:41 +00:00
|
|
|
(defun company-lean--make-candidate (arg)
|
|
|
|
(propertize (car arg) 'type (cdr arg)))
|
2014-08-26 16:26:29 +00:00
|
|
|
|
2014-09-04 22:46:41 +00:00
|
|
|
(defun company-lean--candidates (prefix)
|
|
|
|
(let ((line-number (line-number-at-pos)))
|
|
|
|
(lean-server-send-cmd-sync (lean-cmd-findp line-number prefix)
|
|
|
|
(lambda (candidates)
|
|
|
|
(-map 'company-lean--make-candidate candidates)))))
|
|
|
|
|
|
|
|
(defun company-lean--location (arg)
|
|
|
|
(lean-generate-tags)
|
|
|
|
(let ((tags-table-list (company-etags-buffer-table)))
|
|
|
|
(when (fboundp 'find-tag-noselect)
|
|
|
|
(save-excursion
|
|
|
|
(let ((buffer (find-tag-noselect arg)))
|
|
|
|
(cons buffer (with-current-buffer buffer (point))))))))
|
2014-08-26 16:26:29 +00:00
|
|
|
|
|
|
|
(defun company-lean--annotation (candidate)
|
2014-09-04 22:46:41 +00:00
|
|
|
(let ((type (get-text-property 0 'type candidate)))
|
|
|
|
(when type
|
2014-09-05 13:51:05 +00:00
|
|
|
(let* ((annotation-str (format " : %s" type))
|
|
|
|
(annotation-len (length annotation-str))
|
|
|
|
(candidate-len (length candidate))
|
|
|
|
(entry-width (+ candidate-len
|
|
|
|
annotation-len))
|
2014-09-05 15:46:58 +00:00
|
|
|
(allowed-width (truncate (* 0.90 (window-body-width)))))
|
|
|
|
(when (> entry-width allowed-width)
|
2014-09-05 13:51:05 +00:00
|
|
|
(setq annotation-str
|
2014-09-05 15:46:58 +00:00
|
|
|
(concat
|
|
|
|
(substring-no-properties annotation-str
|
2014-09-05 13:51:05 +00:00
|
|
|
0
|
2014-09-05 15:46:58 +00:00
|
|
|
(- allowed-width candidate-len 3))
|
|
|
|
"...")))
|
2014-09-05 13:51:05 +00:00
|
|
|
annotation-str))))
|
2014-08-26 16:26:29 +00:00
|
|
|
|
2014-09-04 22:46:41 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun company-lean (command &optional arg &rest ignored)
|
2014-08-26 16:26:29 +00:00
|
|
|
(case command
|
2014-09-04 22:46:41 +00:00
|
|
|
(prefix (company-lean--prefix))
|
2014-08-26 16:26:29 +00:00
|
|
|
(candidates (company-lean--candidates arg))
|
|
|
|
(annotation (company-lean--annotation arg))
|
2014-09-04 22:46:41 +00:00
|
|
|
(location (company-lean--location arg))
|
|
|
|
(sorted t)))
|
2014-08-26 16:26:29 +00:00
|
|
|
|
2014-09-04 22:46:41 +00:00
|
|
|
(provide 'lean-company)
|