diff options
author | Alan Pearce | 2022-04-30 19:00:04 +0200 |
---|---|---|
committer | Alan Pearce | 2022-04-30 19:00:04 +0200 |
commit | 5d56c878e59e3712afc3353e2097509a04d4e514 (patch) | |
tree | 804f85ac79a49b50542487436f12a6e5a592e3f3 /post/cedit-and-paredit.md | |
parent | 3a99934b4cff267a77913fa619fad716de6a3aac (diff) | |
download | website-5d56c878e59e3712afc3353e2097509a04d4e514.tar.lz website-5d56c878e59e3712afc3353e2097509a04d4e514.tar.zst website-5d56c878e59e3712afc3353e2097509a04d4e514.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)) |