Skip to content

Commit d1685b9

Browse files
dotemacsbenedekfazekas
authored andcommitted
Change prefix-notation to false (#373)
* Change prefix-notation to false The reasoning is captured in the issue: #363 tl;dr: it allows for quicker searching and clj(s|c) files don't support it * Updated the changelog Updated it about the change to cljr-favor-prefix-notation default behaviour.
1 parent 0a25f2e commit d1685b9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
- [#363](https://github.com/clojure-emacs/clj-refactor.el/issues/363) cljr-favor-prefix-notation by default is set to false
4+
35
## Up next
46

57
- Display keymap bindings in documentation for minor mode

clj-refactor.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ This only applies to dependencies added by `cljr-add-project-dependency'."
105105
:group 'cljr
106106
:type 'boolean)
107107

108-
(defcustom cljr-favor-prefix-notation t
108+
(defcustom cljr-favor-prefix-notation nil
109109
"If t, `cljr-clean-ns' favors prefix notation in the ns form."
110110
:group 'cljr
111111
:type 'boolean)

0 commit comments

Comments
 (0)