From 34ca75cdf25805b765b9ab8da09e403e3b6fea1a Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sat, 23 Jun 2012 13:09:55 -0400 Subject: [PATCH] [Fix #210] Rename alias lp to lm --- modules/utility/README.md | 2 +- modules/utility/init.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/utility/README.md b/modules/utility/README.md index c1cc6187..3687c1d3 100644 --- a/modules/utility/README.md +++ b/modules/utility/README.md @@ -80,7 +80,7 @@ Aliases - `ll` lists human readable sizes. - `lr` lists human readable sizes, recursively. - `la` lists human readable sizes, hidden files. - - `lp` lists human readable sizes, hidden files through pager. + - `lm` lists human readable sizes, hidden files through pager. - `lx` lists sorted by extension (GNU only). - `lk` lists sorted by size, largest last. - `lt` lists sorted by date, most recent last. diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index 53b618d4..b66db8a7 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -82,7 +82,7 @@ alias l='ls -1A' # Lists in one column, hidden files. alias ll='ls -lh' # Lists human readable sizes. alias lr='ll -R' # Lists human readable sizes, recursively. alias la='ll -A' # Lists human readable sizes, hidden files. -alias lp='la | "$PAGER"' # Lists human readable sizes, hidden files through pager. +alias lm='la | "$PAGER"' # Lists human readable sizes, hidden files through pager. alias lx='ll -XB' # Lists sorted by extension (GNU only). alias lk='ll -Sr' # Lists sorted by size, largest last. alias lt='ll -tr' # Lists sorted by date, most recent last.