minor improvements
authorIan Kelling <iank@fsf.org>
Wed, 21 May 2025 04:43:37 +0000 (00:43 -0400)
committerIan Kelling <iank@fsf.org>
Wed, 21 May 2025 04:43:37 +0000 (00:43 -0400)
.gitignore
init.el

index faf22b266e61c0c3fb71531d07374e059444c301..c483d68d4871d67aa0aef3c09c17dbc11b3349e9 100644 (file)
@@ -28,6 +28,7 @@
 /tramp
 /transient
 /url
+/image-dired/
 
 # artifacts I create
 /dev.el
diff --git a/init.el b/init.el
index f8c0feec75df0c922e86da0983173907c736bf92..1701c98eab2e791267b68cb8993c46a21b27b3f8 100644 (file)
--- a/init.el
+++ b/init.el
@@ -686,6 +686,13 @@ A non-nil CURRENT-ONLY argument means save only current buffer."
         savehist-file (concat user-emacs-directory ".savehist"))
   (savehist-mode 1))
 
+;;; image dired
+
+
+;; dont see how to make this change existing thumbs
+;; image-dired-thumb-size
+
+
 ;;; dired
 
 ;; dired - reuse current buffer by pressing 'a'
@@ -1042,7 +1049,7 @@ A non-nil CURRENT-ONLY argument means save only current buffer."
 ;;'(header-line ((t (:background "default" :foreground "default" :overline nil :underline nil))))
 ;; '(region ((t nil))))
 
-;;; tramp debugging
+;; notes on tramp debugging:
 ;; emacs -Q
 ;; (setq tramp-verbose 10)
 ;; do the thing that fails, then open the very big buffer. I figured out somewhat randomly that it was failing to find readlink by doing type -P readlink, which fails in dash with: -P: not found
@@ -1123,8 +1130,9 @@ A non-nil CURRENT-ONLY argument means save only current buffer."
   (interactive)
   (mml-secure-message-encrypt-pgpmime 'dontsign))
 
-;; don't highlight the region.
-(set-face-background 'region nil)
+;; don't highlight the region. just changing things up.
+;;(set-face-background 'region nil)
+;;
 
 ;; this fixes save error for python example code
 (define-coding-system-alias 'UTF-8 'utf-8)
@@ -2553,6 +2561,13 @@ modes like org-mode which have their own yank function."
 ;;;;; C-c - copy
 
 (global-set-key (kbd "C-d") 'kill-ring-save)
+
+;; by default is does image-dired-delete-character, pretty useless.
+(add-hook 'image-dired-thumbnail-mode-hook
+          (lambda ()
+            (define-key image-dired-thumbnail-mode-map (kbd "C-d") nil)))
+
+
 (add-hook 'c-mode-common-hook
           (lambda ()
             (define-key c-mode-map (kbd "C-d") nil)