about summary refs log tree commit diff
path: root/mless
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2018-01-07 23:30:28 +0100
committerLeah Neukirchen <leah@vuxu.org>2018-01-07 23:30:28 +0100
commit4bf38b9751e8affa6407dac49b78bc9f1a19eb79 (patch)
tree8c19a02a568183f28a2672c4f8f90bd9d6a9150c /mless
parenta07be8d7c80101abf73ae3b75bb5a0ab02b20550 (diff)
downloadmblaze-4bf38b9751e8affa6407dac49b78bc9f1a19eb79.tar.gz
mblaze-4bf38b9751e8affa6407dac49b78bc9f1a19eb79.tar.xz
mblaze-4bf38b9751e8affa6407dac49b78bc9f1a19eb79.zip
mless: add { }/$ to jump to first/last message
Diffstat (limited to 'mless')
-rwxr-xr-xmless3
1 files changed, 3 insertions, 0 deletions
diff --git a/mless b/mless
index fa09c8f..395a8f8 100755
--- a/mless
+++ b/mless
@@ -76,6 +76,9 @@ while :; do
 			"+:e $(mscan -n .)$nl" //scan $(mscan -n :)
 	case "$?" in
 	0|1) exit $?;;
+	36) # $ goto end
+		mseq -C '$' 2>/dev/null
+		;;
 	78) # N go to next unseen message
 		nu=$(magrep -v -m1 :S .:) && mseq -C "$nu"
 		;;