doomemacs/init/defuns-util.el

35 lines
908 B
EmacsLisp
Raw Normal View History

2014-12-05 17:28:03 -05:00
;; String Defuns ;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
2015-05-08 03:03:38 -04:00
(defun s-count-lines (s)
"Get number of lines in a string"
(length (s-lines s)))
2014-12-05 17:28:03 -05:00
;; Misc Defuns ;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun what-face (pos)
"Tells you the name of the face (point) is on."
(interactive "d")
(let ((face (or (get-char-property (point) 'read-face-name)
(get-char-property (point) 'face))))
(if face (message "Face: %s" face) (message "No face at %d" pos))))
;;;###autoload
(defun what-col ()
(interactive)
(message "Column %d" (current-column)))
;;;###autoload
(defun what-bindings (key)
(list
(minor-mode-key-binding key)
(local-key-binding key)
(global-key-binding key)))
2015-05-08 03:03:38 -04:00
;;;###autoload
(defun echo (msg &rest args)
"Display MSG in echo-area without logging it in *Messages* buffer."
(interactive)
(let ((message-log-max nil))
(apply 'message msg args)))