You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
;; this is a comment for my function
(defunmy-function ())
It'd be nice if there were a ligature for ;;, to group the characters more closely together, similar to the // ligature. This would benefit languages like Emacs Lisp, Clojure, Comment Lisp, Scheme, Racket, etc.
Emacs often uses multiple ; characters as a section header in code:
;;; this is a section header;; function 1 comment
(defunf1())
;;;; this is a nested section header;; function 2 comment
(defunf2()
So it'd also be nice if sequences of ; characters like ;;;, ;;;;, ;;;;; were also ligatures.
The text was updated successfully, but these errors were encountered:
Hmm, I guess I was thinking it would group the ; characters more closely together, similar to the ... or || ligatures.
Here's how it looks in Iosevak, with ligatures off and the on:
Note that with ligatures on it groups the ; characters more closely together. It's subtle but signals that e.g. ;; constitutes a single semantic unit (comment character).
(Also note that character alignment does not shift around when ligatures are turned on.)
Lisp languages use
;;
to start comments:It'd be nice if there were a ligature for
;;
, to group the characters more closely together, similar to the//
ligature. This would benefit languages like Emacs Lisp, Clojure, Comment Lisp, Scheme, Racket, etc.Emacs often uses multiple
;
characters as a section header in code:So it'd also be nice if sequences of
;
characters like;;;
,;;;;
,;;;;;
were also ligatures.The text was updated successfully, but these errors were encountered: