We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0758795 commit a7299daCopy full SHA for a7299da
1 file changed
clojure-mode.el
@@ -2000,16 +2000,6 @@ nil."
2000
(and hash (1- beg))
2001
(and (not hash) beg))))))
2002
2003
-(defun clojure-char-at-point ()
2004
- "Return the char at point or nil if at buffer end."
2005
- (when (not (= (point) (point-max)))
2006
- (buffer-substring-no-properties (point) (1+ (point)))))
2007
-
2008
-(defun clojure-char-before-point ()
2009
- "Return the char before point or nil if at buffer beginning."
2010
- (when (not (= (point) (point-min)))
2011
- (buffer-substring-no-properties (point) (1- (point)))))
2012
2013
(defun clojure-toggle-keyword-string ()
2014
"Convert the string or keyword at point to keyword or string."
2015
(interactive)
0 commit comments