diff options
author | Alan Pearce | 2022-04-30 19:00:04 +0200 |
---|---|---|
committer | Alan Pearce | 2025-03-16 00:56:49 +0100 |
commit | feb8b02530b8d32e4659b16863d13ebd4379f142 (patch) | |
tree | 5db90542047494064fa5159b8b2e94017a7b27fd /post/cedit-and-paredit.md | |
parent | a1e37b3a20addda6dd00d1a0ccfd349eff8b3afd (diff) | |
download | website-feb8b02530b8d32e4659b16863d13ebd4379f142.tar.lz website-feb8b02530b8d32e4659b16863d13ebd4379f142.tar.zst website-feb8b02530b8d32e4659b16863d13ebd4379f142.zip |
Migrate syntax highlighting options to zola syntax
Diffstat (limited to 'post/cedit-and-paredit.md')
-rw-r--r-- | post/cedit-and-paredit.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post/cedit-and-paredit.md b/post/cedit-and-paredit.md index cd395e9..89f8cb3 100644 --- a/post/cedit-and-paredit.md +++ b/post/cedit-and-paredit.md @@ -28,7 +28,7 @@ paredit. Turns out it provides that control whether a space should be inserted. So, solving the formatting issue turned out to be pretty simple: -```elisp +```lisp (defun ap/cedit-space-delimiter-p (endp delimiter) "Don't insert a space before delimiters in c-style modes" (not cedit-mode)) |