Skip to content

Commit d5e6ac0

Browse files
committed
Add @ (deref) to the expression breaking chars.
It was missing, but it is actually used for identifying completions bounds.
1 parent d3c0d4f commit d5e6ac0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* [#119](https://github.com/clojure-emacs/inf-clojure/pull/119): Set inf-clojure-buffer REPL type on detect.
2222
* [#120](https://github.com/clojure-emacs/inf-clojure/pull/120): Send REPL string always, even if empty.
2323
* [#128](https://github.com/clojure-emacs/inf-clojure/pull/128): Fix inf-clojure-apropos.
24+
* [#129](https://github.com/clojure-emacs/inf-clojure/pull/129): Add `@` (deref) to the expression breaking chars.
2425

2526
## 2.0.1 (2017-05-18)
2627

inf-clojure.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1318,7 +1318,7 @@ you might want to use in your customization."
13181318
:safe #'functionp
13191319
:package-version '(inf-clojure . "2.1.0"))
13201320

1321-
(defconst inf-clojure-clojure-expr-break-chars " \t\n\"\'`><,;|&{()[]")
1321+
(defconst inf-clojure-clojure-expr-break-chars " \t\n\"\'`><,;|&{()[]@")
13221322

13231323
(defun inf-clojure-completion-bounds-of-expr-at-point ()
13241324
"Return bounds of expression at point to complete."

0 commit comments

Comments
 (0)