summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-06-07 02:53:46 -0500
committerCraig Jennings <c@cjennings.net>2025-06-07 02:53:46 -0500
commitc0ed34363cf8a2e34d631be56ba45456081ea345 (patch)
tree2d4575faac97376d0beed97d6511ac68d7629348
parentf1cf21082224ac8c10ce89e6cc79adfa35ca344f (diff)
downloaddotemacs-c0ed34363cf8a2e34d631be56ba45456081ea345.tar.gz
dotemacs-c0ed34363cf8a2e34d631be56ba45456081ea345.zip
fix issue with moving files in dirvish; update tasks
-rw-r--r--modules/dirvish-config.el6
-rw-r--r--todo.org14
2 files changed, 17 insertions, 3 deletions
diff --git a/modules/dirvish-config.el b/modules/dirvish-config.el
index 3f22b95c6..c02b5ff63 100644
--- a/modules/dirvish-config.el
+++ b/modules/dirvish-config.el
@@ -25,10 +25,12 @@
(setq dired-dwim-target t)
(setq dired-clean-up-buffers-too t) ;; offer to kill buffers associated deleted files and dirs
(setq dired-clean-confirm-killing-deleted-buffers t) ;; don't ask; just kill buffers associated with deleted files
- (setq dired-kill-when-opening-new-dired-buffer t) ;; don't litter by leaving buffers when navigating directories
(setq dired-recursive-copies (quote always)) ;; “always” means no asking
(setq dired-recursive-deletes (quote top))) ;; “top” means ask once
+;; note: disabled as it prevents marking and moving files to another directory
+;; (setq dired-kill-when-opening-new-dired-buffer t) ;; don't litter by leaving buffers when navigating directories
+
(add-hook 'dired-mode-hook 'auto-revert-mode) ;; auto revert dired when files change
;; ------------------------------ Dired Open With ------------------------------
@@ -121,7 +123,7 @@ Alert if the file is already a JPEG; notify the user when converstion is done."
("px" ,pix-dir "pictures directory")
("rcj" "/sshx:cjennings@cjennings.net:~" "remote cjennings.net")
("rsb" "/sshx:cjennings@wolf.usbx.me:/home/cjennings/" "remote seedbox")
- ("sx" ,sync-dir "sync directory")
+ ("sx" ,sync-dir "sync directory")
("sv" "~/sync/videos/" "sync/videos directory")
("tg" ,(concat sync-dir "/text.games") "text games")
("vr" ,video-recordings-dir "video recordings directory")
diff --git a/todo.org b/todo.org
index b7cf50bb0..636d5f1fb 100644
--- a/todo.org
+++ b/todo.org
@@ -1,5 +1,17 @@
* Emacs Open Work
-** TODO [#A] Dirvish Issues Opening Images and Video
+** VERIFY [#B] Dirvish should open not showing hidden files by default
+simply take off the h with the directory listings
+** VERIFY [#A] Dirvish Issues Opening Images and Video
+*** 2025-06-07 Sat @ 02:06:45 -0500 Solution: quote the whole filename
+*** 2025-06-07 Sat @ 01:54:16 -0500 Clue: open with vlc shows issues with filenames with spaces
+Your input can't be opened:
+VLC is unable to open the MRL 'file:///home/cjennings/sync/videos/Academy'. Check the log for details.
+Your input can't be opened:
+VLC is unable to open the MRL 'file:///home/cjennings/sync/videos/Software'. Check the log for details.
+Your input can't be opened:
+VLC is unable to open the MRL 'file:///home/cjennings/sync/videos/Foundation-OpenColorIO'. Check the log for details.
+Your input can't be opened:
+VLC is unable to open the MRL 'file:///home/cjennings/sync/videos/Reel.mkv'. Check the log for details.
*** 2025-06-06 Fri @ 23:15:27 -0500 Problem: Binary Files Open in Emacs Instead of xdg-open
This is despite having an "open with" extension which allows you to indicate which program to open via the file's extension.
*** Reference Ideas