diff --git a/README.md b/README.md index c3f2fd7..112fe9e 100644 --- a/README.md +++ b/README.md @@ -1594,6 +1594,9 @@ In Emacs, customization variables modified via the UI (e.g., `M-x customize`) ar ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Window-Dividers.html (add-hook 'after-init-hook #'window-divider-mode) +;; Constrain vertical cursor movement to lines within the buffer +(setq dired-movement-style 'bounded-files) + ;; Dired buffers: Automatically hide file details (permissions, size, ;; modification date, etc.) and all the files in the `dired-omit-files' regular ;; expression for a cleaner display. diff --git a/init.el b/init.el index 1920ff6..e8aaa18 100644 --- a/init.el +++ b/init.el @@ -404,8 +404,6 @@ dired-recursive-copies 'always dired-vc-rename-file t dired-create-destination-dirs 'ask - ;; Constrain vertical cursor movement to lines within the buffer - dired-movement-style 'bounded-files ;; Suppress Dired buffer kill prompt for deleted dirs dired-clean-confirm-killing-deleted-buffers nil)