From 91be906e7297c0cd02ac5ec2e70045d4f8606dd2 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 21 Jan 2023 10:49:56 +0100 Subject: [PATCH] Add Eshell alias for viewing files like with less See https://howardism.org/Technical/Emacs/eshell-why.html. --- eshell/alias | 1 + 1 file changed, 1 insertion(+) diff --git a/eshell/alias b/eshell/alias index 607d36d..4eb06bf 100644 --- a/eshell/alias +++ b/eshell/alias @@ -4,4 +4,5 @@ alias l ls -1 alias ll ls -l $* alias la ls -al $* alias d dired-other-window $1 +alias less view-file $1 alias ff find-file-other-window $1