File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
"0.1"
3
3
"ccls client for lsp-mode")
4
4
5
- (website-url "https://github.com/MaskRay /emacs-ccls")
5
+ (website-url "https://github.com/emacs-lsp /emacs-ccls")
6
6
(keywords "languages" "lsp" "c++")
7
7
8
8
(package-file "ccls.el")
Original file line number Diff line number Diff line change 64
64
(CclsCall (:id :name :location :callType :numChildren :children ) nil )))
65
65
66
66
(defun ccls-call-hierarchy--read-node (data &optional parent )
67
- " Construct a call tree node from hashmap DATA and give it the parent PARENT"
67
+ " Construct a call tree node from hashmap DATA and give it the parent PARENT. "
68
68
(-let* (((&CclsCall :id :name :location :call-type :num-children ) data)
69
69
(filename (lsp--uri-to-path (lsp:location-uri location))))
70
70
(make-ccls-tree-node
Original file line number Diff line number Diff line change 106
106
(ccls--make-code-lens-string (if (/= c0 col) " |" " " ) command?) ))
107
107
(when ov
108
108
(overlay-put ov 'display (concat (overlay-get ov 'display ) " \n " )))
109
- (let ((p (point-at-eol )))
109
+ (let ((p (line-end-position )))
110
110
(setq ov (make-overlay p (1+ p) nil 'front-advance ))
111
111
(overlay-put ov 'ccls-code-lens t )
112
112
(overlay-put ov 'display (ccls--make-code-lens-string " " command?) )))
Original file line number Diff line number Diff line change 6
6
; ; Author: Tobias Pisani, Fangrui Song
7
7
; ; Package-Version: 20200621
8
8
; ; Version: 0.1
9
- ; ; Homepage: https://github.com/MaskRay /emacs-ccls
9
+ ; ; Homepage: https://github.com/emacs-lsp /emacs-ccls
10
10
; ; Package-Requires: ((emacs "27.1") (lsp-mode "6.3.1") (dash "2.14.1"))
11
11
; ; Keywords: languages, lsp, c++
12
12
You can’t perform that action at this time.
0 commit comments