diff options
| author | Craig Jennings <c@cjennings.net> | 2026-04-22 07:02:11 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-04-22 07:02:11 -0500 |
| commit | 5080ece8e40ccf01a4e95f75079b1f929f327e68 (patch) | |
| tree | 469126a75bd65e7e58f5fad04cd7f20835ca89f1 | |
| parent | 96c73033bbd759054d394172dfad6971816c3dc3 (diff) | |
| download | dotemacs-5080ece8e40ccf01a4e95f75079b1f929f327e68.tar.gz dotemacs-5080ece8e40ccf01a4e95f75079b1f929f327e68.zip | |
chore: delete wip.el and remove its stale require from init.el
wip.el held commented-out scratch code (efrit, buffer-same-mode, easy-hugo) plus one active pomm use-package block. The require in init.el was itself commented out, so the file compiled on every make compile pass but nothing in it ever ran at startup.
The easy-hugo block motivated the new preview and publish commands that landed in the previous commit. The other entries (efrit, buffer-same-mode) have been dead code for months.
Also removes the "Cannot load pomm" warning that has been appearing on every make compile run.
| -rw-r--r-- | init.el | 1 | ||||
| -rw-r--r-- | modules/wip.el | 60 |
2 files changed, 0 insertions, 61 deletions
@@ -153,7 +153,6 @@ ;; ------------------------------ Modules In Test ------------------------------ -;;(require 'wip) (require 'lorem-optimum) ;; best fake latin text generator ever (require 'jumper) ;; navigation help for large projects/lotsa buffers (require 'system-commands) ;; reboot, logout, etc. diff --git a/modules/wip.el b/modules/wip.el deleted file mode 100644 index 93c799fb..00000000 --- a/modules/wip.el +++ /dev/null @@ -1,60 +0,0 @@ -;;; wip.el --- test code -*- lexical-binding: t; coding: utf-8; -*- -;; author: Craig Jennings <c@cjennings.net> -;; -;;; Commentary: -;; -;; Work-in-progress and experimental code testing area. This file contains -;; code that is being actively developed or tested before being promoted -;; to stable configuration modules. Functions here may be incomplete, -;; buggy, or subject to significant changes. Include this file at the end -;; of init.el so that if something breaks, most of the Emacs config has -;; already loaded. Once code has been tested and proven stable, graduate -;; it into the appropriate configuration module. Do not rely on this code -;; for production use. -;; -;;; Code: - -;; ----------------------------------- Efrit ----------------------------------- -;; not working as of Wednesday, September 03, 2025 at 12:44:09 AM CDT - -;; (add-to-list 'load-path "~/code/efrit/lisp") -;; (require 'efrit) - -;; ------------------------------ Buffer Same Mode ----------------------------- - -;; (defun cj/buffer-same-mode (&rest modes) -;; "Pop to a buffer with a mode among MODES, or the current one if not given." -;; (interactive) -;; (let* ((modes (or modes (list major-mode))) -;; (pred (lambda (b) -;; (let ((b (get-buffer (if (consp b) (car b) b)))) -;; (member (buffer-local-value 'major-mode b) modes))))) -;; (pop-to-buffer (read-buffer "Buffer: " nil t pred)))) -;; (keymap-global-set "C-x B" #'cj/buffer-same-mode) - -;; ;; --------------------------------- Easy Hugo --------------------------------- - -;; (use-package easy-hugo -;; :defer .5 -;; :init -;; (setq easy-hugo-basedir "~/code/cjennings-net/") -;; (setq easy-hugo-url "https://cjennings.net") -;; (setq easy-hugo-sshdomain "cjennings.net") -;; (setq easy-hugo-root "/var/www/cjennings/") -;; (setq easy-hugo-previewtime "300") -;; (setq easy-hugo-postdir "content") -;; (setq easy-hugo-server-flags "-D --noHTTPCache --disableFastRender") -;; (setq easy-hugo-default-ext ".md") -;; :bind ("C-c H" . easy-hugo) -;; :config -;; (easy-hugo-enable-menu)) - -;; ------------------------------------ Pomm ----------------------------------- - -(use-package pomm - :defer .5 - :bind ("M-p" . pomm) - :commands (pomm pomm-third-time)) - -(provide 'wip) -;;; wip.el ends here. |
