Skip to content

Commit

Permalink
update Coq ignored extensions and add dired-x compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriktews committed Apr 21, 2024
1 parent 7a28fa2 commit 91f89d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions generic/proof-site.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
'(
;; Main instances of PG.

(coq "Coq" "v" nil (".vo" ".glob"))
(coq "Coq" "v" nil (".vo" ".glob" ".vok" ".vos"))
(easycrypt "EasyCrypt" "ec" "\\.eca?\\'")
(phox "PhoX" "phx" nil (".phi" ".pho"))
(qrhl "qRHL" "qrhl")
Expand Down Expand Up @@ -303,7 +303,9 @@ Lisp variable `proof-assistants', or the contents of `proof-assistant-table'.")
(fset proofgen-mode mode-stub))

(dolist (ext (nth 4 tableentry))
(add-to-list 'completion-ignored-extensions ext))
(add-to-list 'completion-ignored-extensions ext)
(when (boundp 'dired-omit-extensions)
(add-to-list 'dired-omit-extensions ext)))

(setq assistants (cdr assistants)))))

Expand Down

0 comments on commit 91f89d3

Please sign in to comment.