Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changes

* [#571](https://github.com/clojure-emacs/clojure-mode/issues/571): Remove `project.el` integration.
* [#574](https://github.com/clojure-emacs/clojure-mode/issues/574): Remove `clojure-view-grimoire` command.

## 5.12.0 (2020-08-13)

Expand Down
9 changes: 0 additions & 9 deletions clojure-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ Out-of-the box `clojure-mode' understands lein, boot, gradle,
["View a Clojure guide" clojure-view-guide]
["View a Clojure reference section" clojure-view-reference-section]
["View the Clojure cheatsheet" clojure-view-cheatsheet]
["View the Clojure Grimoire" clojure-view-grimoire]
["View the Clojure style guide" clojure-view-style-guide])
"--"
["Report a clojure-mode bug" clojure-mode-report-bug]
Expand Down Expand Up @@ -436,14 +435,6 @@ The command will prompt you to select one of the available sections."
(interactive)
(browse-url clojure-cheatsheet-url))

(defconst clojure-grimoire-url "https://www.conj.io/"
"The URL of the Grimoire community documentation site.")

(defun clojure-view-grimoire ()
"Open the Clojure Grimoire in your default browser."
(interactive)
(browse-url clojure-grimoire-url))

(defconst clojure-style-guide-url "https://guide.clojure.style"
"The URL of the Clojure style guide.")

Expand Down