Skip to content

Commit

Permalink
docs: minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed May 31, 2023
1 parent 1e9d244 commit 868bb15
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FAQ.org
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ So, to resolve this issue, you can either:
(setq org-export-async-init-file nil))
#+end_src

*** The ="Odd length text property list"= error
*** The =Odd length text property list= error
For some reason, exporting Org documents in background can fail with this error:

#+begin_src emacs-lisp
Expand Down
1 change: 0 additions & 1 deletion elisp/+minemacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ If NO-MESSAGE-LOG is non-nil, do not print any message to *Messages* buffer."
(defun +set-fonts ()
"Set Emacs' fonts from `minemacs-fonts'."
(interactive)
;; TODO: use (font-family-list) to check if the font is available
(custom-set-faces
`(default
((t (:font ,(format "%s %d"
Expand Down
4 changes: 2 additions & 2 deletions modules/extras/me-elisp-extras.el
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
;; Extracted from: github.com/doomemacs/doomemacs/blob/master/modules/lang/emacs-lisp/autoload.el
(defun +emacs-lisp--highlight-vars-and-faces (end)
"Match defined variables and functions.
Functions are differentiated into special forms, built-in functions and
library/userland functions"
Functions are differentiated into \"special forms\", \"built-in functions\" and
\"library/userland functions\"."
(catch 'matcher
(while (re-search-forward "\\(?:\\sw\\|\\s_\\)+" end t)
(let ((ppss (save-excursion (syntax-ppss))))
Expand Down
1 change: 1 addition & 0 deletions modules/me-biblio.el
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
:config
;; Modified form: jethrokuan.github.io/org-roam-guide/
(defun +org-roam-node-from-cite (entry-key)
"Create an Org-Roam node from a bibliography reference."
(interactive (list (citar-select-ref)))
(let ((title (citar-format--entry
"${author editor} (${date urldate}) :: ${title}"
Expand Down
1 change: 0 additions & 1 deletion modules/obsolete/me-yasnippet.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
:hook ((prog-mode text-mode conf-mode) . +cape-yasnippet--setup-h)
:config
;; To avoid auto-expanding snippets
;; TODO: Make "RET" expand the snippet
(plist-put cape-yasnippet--properties :exit-function #'always)
(defun +cape-yasnippet--setup-h ()
(when (bound-and-true-p yas-minor-mode)
Expand Down
2 changes: 1 addition & 1 deletion skel/modules.el
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
me-tty ; Emacs from terminal (xt-mouse, xclip, ...)
me-fun ; Games and funny packages (xkcd, speed-type, ...)
me-media ; Multimedia (empv, emms, ...)
;; me-workspaces ; Workspace separation (tabspaces, tab-bar, ...). NOTE: This is a WIP
;; me-workspaces ; Workspace separation (tabspaces, tab-bar, ...)
me-binary ; Display binary files in hex or decompile them (hexl, ...) ...
me-window)) ; Frame & window tweaks

Expand Down

0 comments on commit 868bb15

Please sign in to comment.