25

GitHub - cpitclaudel/company-coq: IDE extensions for Proof General's Coq...

 5 years ago
source link: https://github.com/cpitclaudel/company-coq
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

Company-coq

GPL 3 MELPA DOI

A collection of extensions for Proof General's Coq mode.

See screenshots below, or jump right to setup instructions and try the tutorial with M-x company-coq-tutorial after setting up!

Setup

Proof General

Download and install Proof General from GitHub:

git clone https://github.com/ProofGeneral/PG ~/.emacs.d/lisp/PG
cd ~/.emacs.d/lisp/PG
make

Then add the following to your .emacs:

;; Open .v files with Proof General's Coq mode
(load "~/.emacs.d/lisp/PG/generic/proof-site")

MELPA

MELPA is a repository of Emacs packages. Skip this step if you already use MELPA. Otherwise, add the following to your .emacs and restart Emacs:

(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
(package-initialize)

Company-Coq

This should be easier: company-coq is on MELPA. Just use M-x package-refresh-contents RET followed by M-x package-install RET company-coq RET to install and byte-compile company-coq and its dependencies (some of them will produce a few warnings; that's OK).

To enable company-coq automatically, add the following to your .emacs:

;; Load company-coq when opening Coq files
(add-hook 'coq-mode-hook #'company-coq-mode)

Then restart and launch the tutorial with M-x company-coq-tutorial!

Screenshots

Prettification of operators, types, and subscripts

Prettification of math symbols (disabled) Prettification of math symbols (enabled)

Auto-completion

Auto-completion of tactics, with documentation Auto-completion of commands, with documentation

Auto-completion of local definitions Fuzzy auto-completion of module names

Auto-completion of hypotheses Auto-completion of search results Unicode math symbols

Auto-completion of user-defined tactic notations Source browser (requires symbol completion)

Snippets and smart commands

Insertion of new match cases

Insertion of new match goal rules

Fully explicit intros (smart intros)

Outlines, code folding, and jumping to definition

Outline of Coq source files

Code folding

Jumping to definition (cross references)

Help with errors

Diffs of unification errors Documentation for (documented) error messages

Misc. extensions of Proof General

Highlighting of deprecated forms Special syntax for titles in comments Quick help (inline docs)

Help with Unicode input Details about prettifications

Citing

Use M-x company-coq-cite to insert the BibTeX entries for Coq, Proof General, and company-coq in the current buffer.

@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://hdl.handle.net/1721.1/101149}
}

Quick start guide

You can check out the interactive tutorial by pressing M-x company-coq-tutorial RET. See also the screenshots above!

company-coq should be pretty transparent. Completion windows will pop up when company-coq has suggestions to make. By default, this would be when you start writing a tactic name or a command. You can also launch manual completion by using C-RET (or whatever was originally assigned to proof-script-complete in Coq mode).

Once auto-completion has started, the following key bindings are available:

  • RET selects a completion
  • C-g interrupts completion.
  • C-h and <f1> display documentation for the currently highlighted keyword, identifier, or tactic.
  • C-M-v scrolls down in the documentation window.
  • C-w opens source view when available (alternatively, pressing M-. browses to the definition of the identifier at point).

Selecting a completion often inserts a snippet with holes at the current point (company-coq uses yasnippet as the snippet backend). You can move between holes by using <tab> and S-<tab>.

Loading company-coq also binds the following keys:

  • M-RET inserts a new match case (| _ => _).
  • M-S-RET inserts a new match goal rule (| [ H: _ |- _ ] => _).
  • C-c C-a C-x extracts the current goal into a separate lemma.
  • C-down-mouse-1 (i.e. C-click) shows an inline quick help box for the identifier under point. The box disappears when the mouse is released. Pressing the <menu> key or M-F12 also works.
  • M-. jumps to the source of the identifier at point, when available.
  • C-c C-d opens the documentation of the identifier at point (for theorems and definitions; for tactics, use C-h during completion).
  • C-c C-, opens an outline of the code in a separate buffer (using occur).
  • C-c C-/ folds the current definition, or all definitions in the file if repeated.
  • C-c C-\ unfolds the current definition, or all definitions in the file if repeated.
  • S-TAB folds or unfolds the current bullet or curly-brace-delimited block. With C-u, S-TAB folds all bullets and braces in the current buffer.
  • C-c C-& looks up (grep) the current word in files in the current directory's subtree.
  • C-c C-a C-e tries to match the last output to a documented error message, and displays the relevant section of the manual if it finds one.
  • C-c C-a C-d parses the last unification error, and shows a diff of the two types that can't unify. If there is no such error, C-c C-a C-d shows a diff comparing the last goal to the previous one.

Tips

  • Most completion engines support fuzzy matching: you can type Require Import C.N..Ab.ZPa and press RET to insert Coq.Numbers.Integer.Abstract.ZParity, and typing setrewin is enough to insert setoid_rewrite term in ident. You can (and must) omit spaces: SLD will insert Set Ltac Debug (of course SetLtDeb will also work), and ULD will insert Unset Ltac Debug.
  • Using M-S-RET to insert new cases in a match goal saves a lot of time (and finger contortions). For the match itself, use mgw (for match goal with).
  • The point-and-click feature (quick help) also works in non-graphic mode, if you enable xterm-mouse-mode.
  • company-coq improves on some of Proof General's features. Try C-c C-a RET nat RET.
  • Try right-clicking on a [Require Import] statement.
  • Use a__b to display ab.

company-coq is implemented as a collection of small modules implementing independent features; check out M-x customize-variable RET company-coq-disabled-features RET and M-x customize-group RET company-coq RET for more info!

Troubleshooting

Empty squares in place of math operators, or incorrect line spacing

If you see blank squares appear where there should be math symbols (forall, exists, etc.), or if some lines suddenly become very tall, you may be missing a proper math font. See Installing a math font, or insert the following snippet in your .emacs to disable symbols beautification:

;; Disable symbol prettification
(setq company-coq-disabled-features '(prettify-symbols))

On the other hand, if you like the prettification feature a lot, you can enable it in the terminal:

(setq company-coq-features/prettify-symbols-in-terminals t)

Technical note: Proof General also offers a Unicode keywords facility. company-coq's implementation is based on the prettify-symbols-mode facility found in Emacs 24.4+, yielding a more compact (and faster?) implementation.

Advanced topics

Installing a math font

For prettification to work properly, you'll need a font with proper symbol support. Symbola, FreeMono, XITS Math, Segoe UI Symbol, Latin Modern, and Cambria Math will all work. If Emacs doesn't fallback properly, you can use the following snippet (change Symbola and DejaVu sans Mono to the Unicode font you just downloaded and to your usual monospace font, respectively):

(set-fontset-font t 'unicode (font-spec :name "Symbola") nil 'prepend)
(set-fontset-font t 'greek (font-spec :name "DejaVu sans Mono") nil 'prepend)

Or, in Emacs < 25:

(dolist (ft (fontset-list))
  (set-fontset-font ft 'unicode (font-spec :name "YOUR-USUAL-FONT"))
  (set-fontset-font ft 'unicode (font-spec :name "Symbola") nil 'append))

Fixing math indentation

Using a variable-width font for symbols will break indentation. See this other project of mine to download a monospace-friendly symbols font. You'll want to replace the snippet above by following (adjusting Symbola and DejaVu sans Mono as appropriate):

(set-fontset-font t 'unicode (font-spec :name "Symbola Monospacified for DejaVu sans Mono") nil 'prepend)

Or, in Emacs < 25:

(dolist (ft (fontset-list))
  (set-fontset-font ft 'unicode (font-spec :name "YOUR-USUAL-FONT"))
  (set-fontset-font ft 'unicode (font-spec :name "Symbola Monospacified for YOUR-USUAL-FONT") nil 'append))

Folding all goals when a file is opened

Adding the following header to a Coq file will make company-coq hide the bodies of all bullets when the file is opened. You can also customize the company-coq-initial-state variable to apply the setting globally.

(* -*- company-coq-initial-fold-state: bullets; -*- *)

Showing alerts for long-running proofs

If possible, company-coq will use the alert library to display notifications when long-running proofs complete. alert is only needed on Windows and OSX; on Linux systems with DBus this should work out of the box. You can try it out by running the snippet below and opening another application while the proof runs; after 10 seconds company-coq will show a notification.

Goal True.
  Fail timeout 10 repeat pose 1.

Registering your own symbols and math operators

For a single file

Add the following header to a Coq file, save, and run M-x revert-buffer to prettify squiggly arrows.

(* -*- company-coq-local-symbols: (("<~>" . ?↭) ("~>" . ?↝) ("<~" . ?↜)); -*- *)

Alternatively, you can use a special comment at the end of the file:

(* Local Variables: *)
(* company-coq-local-symbols: (("<~>" . ?↭) ("~>" . ?↝) ("<~" . ?↜)) *)
(* End: *)

Tip: you can use M-x add-file-local-variable to add this sort of variables.

For a single project

Create a .dir-locals.el file at the root of your project, and add following contents to it:

;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")

((coq-mode
  (company-coq-dir-local-symbols
   (("<~>" . ?↭) ("~>" . ?↝) ("<~" . ?↜)))))

Tip: you can use M-x add-dir-local-variable to add this sort of variables.

For all Coq files

Adjust and use the following snippet to register your own prettifications for all Coq files. This must run before (company-coq-mode), so it must be added after the company-coq setup code above.

(add-hook 'coq-mode-hook
          (lambda ()
            (setq-local prettify-symbols-alist
                        '((":=" . ?≜) ("Proof." . ?∵) ("Qed." . ?■)
                          ("Defined." . ?□) ("Time" . ?⏱) ("Admitted." . ??)))))

Greek symbols can be obtained using the following mappings:

'(("Alpha" . ) ("Beta" . ) ("Gamma" . )
  ("Delta" . ) ("Epsilon" . ) ("Zeta" . )
  ("Eta" . ) ("Theta" . ) ("Iota" . )
  ("Kappa" . ) ("Lambda" . ) ("Mu" . )
  ("Nu" . ) ("Xi" . ) ("Omicron" . )
  ("Pi" . ) ("Rho" . ) ("Sigma" . )
  ("Tau" . ) ("Upsilon" . ) ("Phi" . )
  ("Chi" . ) ("Psi" . ) ("Omega" . )
  ("alpha" . ) ("beta" . ) ("gamma" . )
  ("delta" . ) ("epsilon" . ) ("zeta" . )
  ("eta" . ) ("theta" . ) ("iota" . )
  ("kappa" . ) ("lambda" . ) ("mu" . )
  ("nu" . ) ("xi" . ) ("omicron" . ?ο)
  ("pi" . ) ("rho" . ) ("sigma" . )
  ("tau" . ) ("upsilon" . ) ("phi" . )
  ("chi" . ) ("psi" . ) ("omega" . ))

in which case you may want to use a custom font for Greek characters:

(dolist (ft (fontset-list))
  (set-fontset-font ft 'greek (font-spec :name "DejaVu Sans Mono")))

Tip: to add multi-character substitutions, you may want to consult issue #201.

Autocompleting symbols and tactics defined externally

The procedure above will give you auto-completion and documentation for tactics, commands, and theorems that you define locally, but not for theorem names and symbols defined in the libraries you load. To get the latter, add the following to your .emacs, before (company-coq-mode):

(setq company-coq-live-on-the-edge t)

This feature won't work unless you build and use a patched coq REPL: see this fork. Two of the relevant patches has been merged upstream (into Coq trunk, not 8.5); the last one is being discussed here.

You can download these changes as patches for 8.4, 8.5 or trunk.

To find everything on 8.4 you'll need this extra bit:

(setq company-coq-extra-symbols-cmd "SearchAbout -\"____\"")

Installing from source

Use Cask.

Special thanks

Many thanks to Pierre Courtieu for his work on Proof General, and to Jonathan Leivent and Jason Gross for their tireless bug reports and suggestions!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK