File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -1508,21 +1508,12 @@ evaluating \\[inf-clojure-completion-form] at the REPL."
1508
1508
(inf-clojure--process-response completion-expr proc " (" " )" ))))))
1509
1509
1510
1510
(defconst inf-clojure-clojure-expr-break-chars " ^][ \" '`><,;|&{()@\\ ^"
1511
- " Regexp are hard .
1511
+ " A list of characters that serve as expression boundaries .
1512
1512
1513
- This regex has been built in order to match the first of the
1514
- listed chars. There are a couple of quirks to consider:
1515
-
1516
- - the ] is always a special in elisp regex so you have to put it
1517
- directly AFTER [ if you want to match it as literal.
1518
- - The ^ needs to be escaped with \\ ^.
1519
-
1520
- Tests and `re-builder' are your friends." )
1513
+ See `inf-clojure-completion-bounds-of-expr-at-point' ." )
1521
1514
1522
1515
(defun inf-clojure--kw-to-symbol (kw )
1523
- " Convert the keyword KW to a symbol.
1524
-
1525
- This guy was taken from CIDER, thanks folks."
1516
+ " Convert the keyword KW to a symbol."
1526
1517
(when kw
1527
1518
(replace-regexp-in-string " \\ `:+" " " kw)))
1528
1519
You can’t perform that action at this time.
0 commit comments