Lots of little bug fixes

This commit is contained in:
Howard Abrams 2025-03-10 16:20:15 -07:00
parent 6155e58879
commit cf18e3fc3c
9 changed files with 45 additions and 54 deletions

View file

@ -219,8 +219,7 @@ The following /defines/ the rest of my org-mode literate files, that I load late
;; "ha-irc.org" ;; "ha-irc.org"
"ha-org-publishing.org" "ha-org-publishing.org"
"ha-email.org" "ha-email.org"
"ha-aux-apps.org" "ha-aux-apps.org"))
"ha-feed-reader.org"))
"ha-dashboard.org")) "ha-dashboard.org"))
"List of org files that complete the hamacs project.") "List of org files that complete the hamacs project.")
#+end_src #+end_src

View file

@ -252,7 +252,7 @@ Save the file whenever I move away from Emacs (see [[https://irreal.org/blog/?p=
(interactive) (interactive)
(save-some-buffers t)) (save-some-buffers t))
;; See 'after-focus-change -hook? ;; See 'after-focus-change-function?
(add-hook 'focus-out-hook 'save-all-buffers) (add-hook 'focus-out-hook 'save-all-buffers)
#+end_src #+end_src
*** Download Files via URL *** Download Files via URL
@ -818,12 +818,9 @@ The built-in =isearch= is fantastically simple and useful, bound to ~C-s~, but w
I like Charles Chois [[https://github.com/kickingvegas/casual][Casual Suite]], and his original [[https://github.com/kickingvegas/cc-isearch-menu][cc-isearch-menu]] was great at seeing the /buried/ features. Ive duplicated the features using [[https://github.com/jerrypnz/major-mode-hydra.el][pretty-hydra]]. In the middle of a search, type ~⌘-s~ (Command-s), and menu of options I dont remember appear. I like Charles Chois [[https://github.com/kickingvegas/casual][Casual Suite]], and his original [[https://github.com/kickingvegas/cc-isearch-menu][cc-isearch-menu]] was great at seeing the /buried/ features. Ive duplicated the features using [[https://github.com/jerrypnz/major-mode-hydra.el][pretty-hydra]]. In the middle of a search, type ~⌘-s~ (Command-s), and menu of options I dont remember appear.
#+begin_src emacs-lisp :tangle no #+begin_src emacs-lisp
(defvar ha-isearch--title (font-icons 'faicon "magnifying_glass"
:title "Search Options"))
(pretty-hydra-define isearch-mode (pretty-hydra-define isearch-mode
(:color amaranth :quit-key "C-s" :title ha-isearch--title) (:color amaranth :quit-key "C-s" :title " Search Options")
("Movement" ("Movement"
(("n" isearch-repeat-forward "Forward") (("n" isearch-repeat-forward "Forward")
("p" isearch-repeat-backward "Backward") ("p" isearch-repeat-backward "Backward")

View file

@ -275,10 +275,9 @@ Simple function that gives me the font information based on the size I need. Re
(defun ha-set-favorite-font-size (size) (defun ha-set-favorite-font-size (size)
"Set the default font size as well as equalize the fixed and variable fonts." "Set the default font size as well as equalize the fixed and variable fonts."
(let ((mixed-on mixed-pitch-mode) (let ((fixed-font (format "%s-%d" ha-fixed-font size))
(fixed-font (format "%s-%d" ha-fixed-font size))
(prop-font (format "%s-%d" ha-variable-font size))) (prop-font (format "%s-%d" ha-variable-font size)))
(when mixed-on (when (fboundp 'mixed-pitch-mode)
(mixed-pitch-mode -1)) (mixed-pitch-mode -1))
;; The font specification is the name and the size ... odd enough I guess: ;; The font specification is the name and the size ... odd enough I guess:
@ -286,9 +285,7 @@ Simple function that gives me the font information based on the size I need. Re
(set-face-attribute 'fixed-pitch nil :font fixed-font :inherit 'default (set-face-attribute 'fixed-pitch nil :font fixed-font :inherit 'default
:height 'unspecified) :height 'unspecified)
(set-face-attribute 'variable-pitch nil :font prop-font :inherit 'default (set-face-attribute 'variable-pitch nil :font prop-font :inherit 'default
:height 'unspecified) :height 'unspecified)))
(when mixed-on
(mixed-pitch-mode 1))))
#+end_src #+end_src
Define /interactive/ functions to quickly adjusting the font size based on my computing scenario: Define /interactive/ functions to quickly adjusting the font size based on my computing scenario:
@ -337,8 +334,6 @@ Which font to choose?
(if (eq system-type 'gnu/linux) (if (eq system-type 'gnu/linux)
(ha-linux-laptop-fontsize) (ha-linux-laptop-fontsize)
(ha-mac-laptop-fontsize))) (ha-mac-laptop-fontsize)))
(font-monitor-size-default)
#+end_src #+end_src
** Ligatures ** Ligatures
@ -392,8 +387,8 @@ The way we access the /font icons/ has always been … odd; needing to specify t
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defun font-icons (collection label &rest args) (defun font-icons (collection label &rest args)
"Abstraction over `nerd-icons' project. "Abstraction over `nerd-icons' project.
LABEL is a short icon description merged with COLLECTION to identify an LABEL is a short icon description merged with COLLECTION to
icon to use. For instance, 'faicon or 'octicon. identify an icon to use. For instance, 'faicon or 'octicon.
ARGS, a plist, contain the title, sizing and other information. ARGS, a plist, contain the title, sizing and other information.
@ -406,12 +401,12 @@ The way we access the /font icons/ has always been … odd; needing to specify t
(font-icons 'octicon \"git-branch\")" (font-icons 'octicon \"git-branch\")"
(let* ((func (intern (format "nerd-icons-%s" collection))) (let* ((func (intern (format "nerd-icons-%s" collection)))
(short (cl-case collection (short (cl-case collection
('octicon "oct") (octicon "oct")
('faicon "fa") (faicon "fa")
('mdicon "md") (mdicon "md")
('codicon "cod") (codicon "cod")
('sucicon "custom") (sucicon "custom")
('devicon "dev") (devicon "dev")
(t collection))) (t collection)))
(title (plist-get args :title)) (title (plist-get args :title))
(space (plist-get args :space)) (space (plist-get args :space))
@ -426,6 +421,15 @@ The way we access the /font icons/ has always been … odd; needing to specify t
(title (concat " " title)))))) (title (concat " " title))))))
#+END_SRC #+END_SRC
So:
#+BEGIN_SRC emacs-lisp
(font-icons 'faicon "apple" :title "MacOS Specific")
;; -> #(" MacOS Specific" 0 1 (rear-nonsticky t display (raise 0.0)
;; font-lock-face (:family "CaskaydiaCove Nerd Font" :height 1.0)
;; face (:family "CaskaydiaCove Nerd Font" :height 1.0)))
#+END_SRC
This replaces the /title generator/ for [[file:ha-config.org::*Leader Sequences][major-mode-hydra]] project to include a nice looking icon: This replaces the /title generator/ for [[file:ha-config.org::*Leader Sequences][major-mode-hydra]] project to include a nice looking icon:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -441,7 +445,8 @@ Transition:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defun with-faicon (icon str &optional height v-adjust) (defun with-faicon (icon str &optional height v-adjust)
"Return an ICON from the Nerd Fonts along with a STR for a label." "Return an ICON from the Nerd Fonts along with a STR for a label.
HEIGHT defaults to 1, and V-ADJUST defaults to 0."
(font-icons 'faicon icon :v-adjust (or v-adjust 0) :height (or height 1) :title str)) (font-icons 'faicon icon :v-adjust (or v-adjust 0) :height (or height 1) :title str))
(defun with-fileicon (icon str &optional height v-adjust) (defun with-fileicon (icon str &optional height v-adjust)
@ -572,8 +577,10 @@ Most of the time, Emacs is on my desk is a darkened room, so I choose the dark t
(defun laptop-inside () (defun laptop-inside ()
"Customize the theme for inside programming." "Customize the theme for inside programming."
(interactive) (interactive)
(sit-for 1)
(load-theme 'hamacs) (load-theme 'hamacs)
(ha-word-processor-fonts)) (sit-for 1)
(font-monitor-size-default))
#+end_src #+end_src
But, when feeling adventurous, I /sometimes/ take my laptop outside: But, when feeling adventurous, I /sometimes/ take my laptop outside:
@ -611,7 +618,6 @@ Oh, and turn off the line highlighting:
And of course, the default is /inside/ where my mind is dark and safe: And of course, the default is /inside/ where my mind is dark and safe:
#+begin_src emacs-lisp #+begin_src emacs-lisp
(add-to-list 'custom-theme-load-path hamacs-source-dir)
(laptop-inside) (laptop-inside)
#+end_src #+end_src
** Highlight Task Labels ** Highlight Task Labels

View file

@ -181,9 +181,9 @@ And define the same interface for Linux. Keep in mind, we need the exit code fro
** Converting to Org ** Converting to Org
Let's work top-down at this point with the interactive function that inserts the clipboard into the current buffer: Let's work top-down at this point with the interactive function that inserts the clipboard into the current buffer:
#+begin_src emacs-lisp #+begin_src emacs-lisp
(defun ha-org-yank-clipboard () (defun ha-org-yank-clipboard ()
"Yanks (pastes) the contents of the Apple Mac clipboard in an "Yanks (pastes) the contents of the Apple Mac clipboard in an
org-mode-compatible format." org-mode-compatible format."
(interactive) (interactive)
(insert (ha-org-clipboard))) (insert (ha-org-clipboard)))
#+end_src #+end_src

View file

@ -3,7 +3,7 @@
#+date: 2020-09-18 #+date: 2020-09-18
#+tags: emacs org #+tags: emacs org
#+startup: inlineimages #+startup: inlineimages
#+lastmod: [2025-02-28 Fri] #+lastmod: [2025-03-01 Sat]
A literate programming file for configuring org-mode and those files. A literate programming file for configuring org-mode and those files.
@ -446,8 +446,7 @@ Using the [[https://graphviz.org/][graphviz project]], create charts with /textu
(use-package graphviz-dot-mode (use-package graphviz-dot-mode
:mode "\\.dot\\'" :mode "\\.dot\\'"
:init :init
(setq tab-width 4 (setq graphviz-dot-indent-width 2
graphviz-dot-indent-width 2
graphviz-dot-auto-indent-on-newline t graphviz-dot-auto-indent-on-newline t
graphviz-dot-auto-indent-on-braces t graphviz-dot-auto-indent-on-braces t
graphviz-dot-auto-indent-on-semi t)) graphviz-dot-auto-indent-on-semi t))

View file

@ -102,10 +102,8 @@ Doing a lot of [[https://github.com/yoshiki/yaml-mode][YAML work]], but the =ya
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package yaml-mode (use-package yaml-mode
:after mixed-pitch
:mode ((rx ".yamllint") :mode ((rx ".yamllint")
(rx ".y" (optional "a") "ml" string-end)) (rx ".y" (optional "a") "ml" string-end))
:hook (yaml-mode . (lambda () (mixed-pitch-mode -1)))
:mode-hydra :mode-hydra
((:foreign-keys run) ((:foreign-keys run)
("Simple" ("Simple"
@ -198,12 +196,6 @@ I adapted this code from the [[https://github.com/emacsmirror/poly-ansible][poly
("Extensions" (("j" poly-yaml-jinja2-mode "Jinja2"))))) ("Extensions" (("j" poly-yaml-jinja2-mode "Jinja2")))))
#+end_src #+end_src
We need to make sure the =mixed-pitch-mode= doesnt screw things up.
#+begin_src emacs-lisp :tangle no
(add-hook 'poly-yaml-jinja2-mode-hook (lambda () (mixed-pitch-mode -1)))
#+end_src
We /can/ hook this up to Org, via: We /can/ hook this up to Org, via:
#+begin_src emacs-lisp :tangle no #+begin_src emacs-lisp :tangle no

View file

@ -37,9 +37,9 @@ While Emacs supplies a Python editing environment, well still use =use-packag
(setq python-indent-guess-indent-offset-verbose nil (setq python-indent-guess-indent-offset-verbose nil
flycheck-flake8-maximum-line-length 120) flycheck-flake8-maximum-line-length 120)
:config :config
(when (and (executable-find "python3") (when (and (executable-find "ipython")
(string= python-shell-interpreter "python")) (string= python-shell-interpreter "ipython"))
(setq python-shell-interpreter "python3")) (setq python-shell-interpreter "ipython"))
(flycheck-add-next-checker 'python-pylint 'python-pycompile 'append)) (flycheck-add-next-checker 'python-pylint 'python-pycompile 'append))
#+end_src #+end_src

View file

@ -47,12 +47,10 @@ For all programming languages, I would like to now default to absolute line numb
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package emacs (use-package emacs
:after mixed-pitch
:config :config
(defun ha-prog-mode-config () (defun ha-prog-mode-config ()
"Configure the `prog-mode'" "Configure the `prog-mode'"
(setq display-line-numbers t) (setq display-line-numbers t))
(mixed-pitch-mode 0))
:hook :hook
(prog-mode . ha-prog-mode-config)) (prog-mode . ha-prog-mode-config))
#+end_src #+end_src

View file

@ -372,7 +372,7 @@ Lets make a /theme/:
`(org-code ((t (:foreground ,almond)))) `(org-code ((t (:foreground ,almond))))
`(org-verbatim ((t (:foreground ,gray-95 :inherit fixed-pitch)))) `(org-verbatim ((t (:foreground ,gray-95 :inherit fixed-pitch))))
`(org-block ((t (:background ,gray-10)))) `(org-block ((t (:background ,gray-10 :extend t))))
`(org-block-begin-line ((t (:foreground ,gray-50 :background ,gray-20 :height ,smaller :extend t)))) `(org-block-begin-line ((t (:foreground ,gray-50 :background ,gray-20 :height ,smaller :extend t))))
`(org-block-end-line ((t (:inherit org-block-begin-line :height ,smallest)))) `(org-block-end-line ((t (:inherit org-block-begin-line :height ,smallest))))
@ -467,7 +467,7 @@ Let's =provide= a name so we can =require= this file:
#+DESCRIPTION: defining a warm, autumn, but subtle color theme for Emacs. #+DESCRIPTION: defining a warm, autumn, but subtle color theme for Emacs.
#+PROPERTY: header-args:sh :tangle no #+PROPERTY: header-args:sh :tangle no
#+PROPERTY: header-args:emacs-lisp :tangle hamacs-theme.el #+PROPERTY: header-args:emacs-lisp :tangle ~/.emacs.d/hamacs-theme.el
#+PROPERTY: header-args :results none :eval no-export :comments no mkdirp yes #+PROPERTY: header-args :results none :eval no-export :comments no mkdirp yes
#+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil date:nil #+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil date:nil