diff options
author | Alan Pearce | 2022-04-30 19:00:04 +0200 |
---|---|---|
committer | Alan Pearce | 2022-04-30 19:00:04 +0200 |
commit | a8ad05ee11fd6c6c32dbadad30ed2013b08587ae (patch) | |
tree | 32c7c03f3839cde46bbfcfcda491c0448dd6b6b9 /content/post/cedit-and-paredit.md | |
parent | 5deeb3893fead388293e16317b8a3e8f178d9e25 (diff) | |
download | website-a8ad05ee11fd6c6c32dbadad30ed2013b08587ae.tar.lz website-a8ad05ee11fd6c6c32dbadad30ed2013b08587ae.tar.zst website-a8ad05ee11fd6c6c32dbadad30ed2013b08587ae.zip |
Migrate syntax highlighting options to zola syntax
Diffstat (limited to 'content/post/cedit-and-paredit.md')
-rw-r--r-- | content/post/cedit-and-paredit.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/post/cedit-and-paredit.md b/content/post/cedit-and-paredit.md index cd395e9..89f8cb3 100644 --- a/content/post/cedit-and-paredit.md +++ b/content/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)) |