Server IP : 127.0.0.2 / Your IP : 3.137.179.200 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/manpages/ |
Upload File : |
;;; man-addons.el - some helpful additions for browsing man pages. ;;; ;;; Copyright (c) 1998-2001 Karl M. Hegbloom <karlheg@hegbloom.net> ;;; Released under the terms of the GPL version >= 2.0 ;;; ;;; See: /usr/share/common-licences/GPL-2 ;;; ;;; The usual instructions apply... Place this file in a directory on ;;; your `load-path' and then add (require 'man-addons) to your ;;; `user-init-file'. ;;; ;;; This is tested in XEmacs 21 with both the native XEmacs man.el and ;;; one I ported from GNU Emacs. I hope it works equally well for GNU ;;; Emacs users. ;;; ;;; After loading this file, when you have man page source files ;;; visible from a `dired' buffer, you can push `l' when the cursor is ;;; over them, and preview the page in man mode. I find this very ;;; helpful while editting manual pages! ;;; ;;;###autoload (defun dired-man-locally () "From a dired buffer, view the man page file at point, using \"man -l file\"." (interactive) (if (= 1 (function-max-args #'manual-entry)) (manual-entry (concat (dired-get-filename) " -l")) (manual-entry (dired-get-filename) "-l"))) ;;;###autoload (add-hook 'dired-setup-keys-hook #'(lambda () (define-key dired-mode-map [(?l)] #'dired-man-locally))) (require 'thingatpt) ;;;###autoload (defun man-locally-at-point () "From any buffer, view the man page file at point, using \"man -l file\". This is useful when you use `view-file' to visit one of the .list files in /var/lib/dpkg/info -- put the cursor over a man page listed there, and use `M-x man-locally-at-point' to view it." (interactive) (let ((manpage (thing-at-point 'filename))) (if (= 1 (function-max-args #'manual-entry)) (manual-entry (concat manpage " -l")) (manual-entry manpage "-l")))) (provide 'man-addons)