-
Notifications
You must be signed in to change notification settings - Fork 29
/
company-coq-utils.el
86 lines (72 loc) · 2.97 KB
/
company-coq-utils.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
;;; company-coq-utils.el --- Parts of company-coq that do not require Proof General or Coq to run -*- lexical-binding: t -*-
;; Copyright (C) 2015, 2016 Clément Pit--Claudel
;; Author: Clément Pit--Claudel <[email protected]>
;; URL: https://github.com/cpitclaudel/company-coq
;; Keywords: convenience, languages
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; This file includes autoloaded functions that do not require Proof General to
;; run. See company-coq.el for information about this package.
;;
;;; History:
;;; Code:
(defconst company-coq--coq-bibtex
"@Manual{Coq,
Title = {The Coq proof assistant reference manual},
Author = {The Coq development team},
Note = {Version 8.0},
Organization = {LogiCal Project},
Year = {2004},
Url = {http://coq.inria.fr}
}")
(defconst company-coq--pg-bibtex
"@InCollection{ProofGeneral2000,
Title = {Proof General: A Generic Tool for Proof Development},
Author = {Aspinall, David},
Booktitle = {Tools and Algorithms for the Construction and
Analysis of Systems, {TACAS} 2000},
Publisher = {Springer Berlin Heidelberg},
Year = {2000},
Editor = {Graf, Susanne and Schwartzbach, Michael},
Pages = {38--43},
Series = {Lecture Notes in Computer Science},
Volume = {1785},
Doi = {10.1007/3-540-46419-0_3},
ISBN = {978-3-540-67282-1},
Url = {http://dx.doi.org/10.1007/3-540-46419-0_3}
}")
(defconst company-coq--self-bibtex
"@InProceedings{CompanyCoq2016,
Title = {Company-Coq: Taking Proof General one step closer to a real IDE},
Author = {Pit-Claudel, Clément and Courtieu, Pierre},
Booktitle = {CoqPL'16: The Second International Workshop on Coq for PL},
Year = {2016},
Month = jan,
Doi = {10.5281/zenodo.44331},
Url = {http://dx.doi.org/10.5281/zenodo.44331}
}")
(defconst company-coq--citations
(list company-coq--coq-bibtex
company-coq--pg-bibtex
company-coq--self-bibtex))
;;;###autoload
(defun company-coq-cite ()
"Insert BibTeX entries for Coq, PG, and company-coq."
(interactive)
(save-excursion
(insert (mapconcat #'identity company-coq--citations "\n\n"))))
(provide 'company-coq-utils)
;;; company-coq-utils.el ends here
;; Local Variables:
;; nameless-current-name: "company-coq"
;; End: