[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
less.el 0.1
From: |
William Xu |
Subject: |
less.el 0.1 |
Date: |
24 Sep 2005 21:02:31 -0700 |
User-agent: |
G2/0.2 |
Hi,
This package enables one to view file in `less' style. See commentary.
Feedbacks are welcomed.
--
William
;;; less.el --- less style view mode
;; Copyright (C) 2005 William Xu
;; Author: William Xu <address@hidden>
;; $Id: less.el,v 0.1 2005/09/07 00:37:49 xwl Exp $
;; This file is not part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
;; 02110-1301 USA
;;; Commentary:
;; View file like a simple `less'. Provide limited less keys, mainly j,
;; k, f, b, g, G, etc.
;; Put this file into your load-path and the following into your
;; ~/.emacs:
;; (require 'less)
;;
;; Then use `M-x less-minor-mode' to toggle `less-minor-mode'.
;; There's also a `view-less.el' in XEmacs. But it does too much for
;; me, i just wanna less keys like j, k, f, b, g, G, not to mess
;; with other keys in major mode.
;;; Change Log:
;; v 0.1 [2005/09/07 01:41:01] Initial version.
;;; Code:
(define-minor-mode less-minor-mode
"Toggle less-minor-mode.
With less-minor-mode enabled, you could use `less' like keys to view
files.
\\{less-minor-mode-map}."
nil " Less"
'(("j" . less-scroll-up-one-line)
("k" . less-scroll-down-one-line)
("f" . scroll-up)
("b" . scroll-down)
("g" . beginning-of-buffer)
("G" . end-of-buffer)
(" " . scroll-up)
("" . scroll-down)
("e" . less-quit))
(set (make-local-variable 'buffer-read-only) less-minor-mode))
(defun less-scroll-up-one-line ()
"Scroll up one line."
(interactive)
(scroll-up 1))
(defun less-scroll-down-one-line ()
"Scroll down one line."
(interactive)
(scroll-down 1))
(defun less-quit ()
"Quit `less-minor-mode'."
(interactive)
(less-minor-mode -1))
(defun auto-less-minor-mode ()
"Auto enter `less-minor-mode' when visiting read-only files. You can
add this to `find-file-hooks'."
(unless (file-writable-p buffer-file-name)
(less-minor-mode 1)))
(defun less-minor-mode-on ()
"Turn on `less-minor-mode'."
(less-minor-mode 1))
(defun less-minor-mode-off ()
"Turn off `less-minor-mode'."
(less-minor-mode -1))
(provide 'less)
;;; less.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- less.el 0.1,
William Xu <=