diff --git a/pkgs/elisp/azos-emacs-base.org b/pkgs/elisp/azos-emacs-base.org index 99c81cd..ba40e2f 100644 --- a/pkgs/elisp/azos-emacs-base.org +++ b/pkgs/elisp/azos-emacs-base.org @@ -779,7 +779,7 @@ Need to autoload dired-x for dired-omit :config (evil-collection-magit-setup) :bind - (:map anerenv/global-minor-mode/open-keymap + (:map azos/global-minor-mode/open-keymap ("g" . 'magit-status)) ) #+end_src @@ -789,7 +789,7 @@ Need to autoload dired-x for dired-omit #+begin_src emacs-lisp (require 'org-faces) -(defun anerenv/set-org-mode-fixed-pitch-faces () +(defun azos/set-org-mode-fixed-pitch-faces () (mapc (lambda (face) (set-face-attribute face nil :font (face-attribute 'fixed-pitch :font) :height (face-attribute 'fixed-pitch :height))) @@ -809,12 +809,12 @@ Need to autoload dired-x for dired-omit (use-package org :hook (org-mode . variable-pitch-mode) - (org-mode . anerenv/set-bidi-env) + (org-mode . azos/set-bidi-env) (org-mode . (lambda () (setq-local whitespace-style '(face tabs trailing tab-mark indentation)))) :config - (anerenv/set-org-mode-fixed-pitch-faces) + (azos/set-org-mode-fixed-pitch-faces) (setq org-src-tab-acts-natively t org-adapt-indentation nil org-startup-folded t @@ -881,7 +881,7 @@ This section makes code-indentation correction work inside source blocks. Taken from: https://github.com/emacs-evil/evil/issues/1288 #+begin_src emacs-lisp -(defun anerenv/org/evil-org-insert-state-in-edit-buffer (fun &rest args) +(defun azos/org/evil-org-insert-state-in-edit-buffer (fun &rest args) "Bind `evil-default-state' to `insert' before calling FUN with ARGS." (let ((evil-default-state 'insert) ;; Force insert state @@ -895,7 +895,7 @@ Taken from: https://github.com/emacs-evil/evil/issues/1288 (evil-refresh-cursor))) (advice-add 'org-babel-do-key-sequence-in-edit-buffer - :around #'anerenv/org/evil-org-insert-state-in-edit-buffer) + :around #'azos/org/evil-org-insert-state-in-edit-buffer) #+end_src * Provide