We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
where
Inductive
The following snippet
Reserved Notation " t '-->' t' " (at level 40). Inductive step : nat -> nat -> Prop := where " t '-->' t' " := (step t t').
renders as follows
The last --> is not prettified!
-->
The text was updated successfully, but these errors were encountered:
Snap! Good catch. The place to fix would be this snippet:
(defun company-coq-features/prettify-symbols--predicate-1 (pos) "Check if POS should be prettified." (save-excursion (goto-char pos) (let ((pp (syntax-ppss))) (or (company-coq--in-code-p-1 pp) (company-coq--in-notation-string-1 pp) ;; Add something here ))))
Sorry, something went wrong.
No branches or pull requests
The following snippet
renders as follows
The last
-->
is not prettified!The text was updated successfully, but these errors were encountered: