Skip to content

Latest commit

 

History

History
79 lines (53 loc) · 2.98 KB

CHANGELOG.md

File metadata and controls

79 lines (53 loc) · 2.98 KB

Changelog

master (unreleased)

New features

  • #302: Add new sexp navigation commands. clojure-forward-logical-sexp and clojure-backward-logical-sexp consider ^hints and #reader.macros to be part of the sexp that follows them.
  • #303: Handle boot projects in clojure-expected-ns.

Bugs fixed

  • Fix font-locking for def with special chars such as: defn*, defspecial!.

4.1.0 (20/06/2015)

Changes

  • Add .cljc to auto-mode-alist.
  • #281: Add support for namespace-prefixed definition forms.
  • Remove clojure-mark-string.
  • #283: You can now specify different indentation settings for ns-prefixed symbols.
  • #285: Require Emacs 24.3+.

Bugs fixed

  • Prevent error when calling indent-for-tab-command at the start of the buffer at end of line.
  • #274: Correct font-locking of certain punctuation character literals.
  • Fix font-locking of namespace-prefixed dynamic vars (e.g. some.ns/*var*).
  • #284: Fix the indentation of the are macro.

4.0.1 (19/12/2014)

Bugs fixed

  • Indent properly as->.
  • Revert the indentation settings for ->, ->>, some-> and some->>.

4.0.0 (12/12/2014)

Changes

  • Removed inferior-lisp integration in favor of inf-clojure.
  • Indented the body of cond with 2 spaces.
  • Removed special indentation settings for defstruct, struct-map and assoc.
  • Added special indentation settings for ->, ->>, cond->, cond->>, some-> and some->>.

3.0.1 (24/11/2014)

Bugs fixed

  • Numerous font-lock bug fixes.
  • #260: Don't treat @ as a word character.
  • #239: Indent properly multi-arity definitions.

3.0.0 (2/9/2014)

New features

  • Added font-locking for namespaces and namespace aliases.
  • Added font-locking for character literals.
  • Added font-locking for constants.
  • Added font-locking for dynamic vars.
  • Added font-locking for cljx.
  • Various docstring filling improvements.
  • Introduced additional faces for keyword literals, character literals and interop method invocations.
  • Added support for prettify-symbols-mode.

Changes

  • Emacs 24.1 is required.
  • Removed deprecated clojure-font-lock-comment-sexp.
  • Renamed clojure-mode-font-lock-setup to clojure-font-lock-setup.
  • Some font-locking was extracted to a separate package. (clojure-mode-extra-font-locking).

Bugs fixed

  • Properly font-lock docstrings regardless of the presence of metadata or type hints.