2011-05-09 15:52:57 +00:00
|
|
|
;;; misc.el --- some nonstandard editing and utility commands for Emacs
|
1992-05-30 22:12:04 +00:00
|
|
|
|
2014-01-01 07:43:34 +00:00
|
|
|
;; Copyright (C) 1989, 2001-2014 Free Software Foundation, Inc.
|
1989-10-31 15:59:53 +00:00
|
|
|
|
2014-02-10 01:34:22 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2002-05-02 05:41:46 +00:00
|
|
|
;; Keywords: convenience
|
2010-08-29 16:17:13 +00:00
|
|
|
;; Package: emacs
|
1992-07-22 04:22:30 +00:00
|
|
|
|
1989-10-31 15:59:53 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1989-10-31 15:59:53 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1989-10-31 15:59:53 +00:00
|
|
|
|
|
|
|
;; GNU Emacs 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
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1989-10-31 15:59:53 +00:00
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1989-10-31 15:59:53 +00:00
|
|
|
|
2011-05-09 23:57:40 +00:00
|
|
|
(eval-when-compile
|
|
|
|
(require 'tabulated-list))
|
|
|
|
|
1989-10-31 15:59:53 +00:00
|
|
|
(defun copy-from-above-command (&optional arg)
|
|
|
|
"Copy characters from previous nonblank line, starting just above point.
|
|
|
|
Copy ARG characters, but not past the end of that line.
|
|
|
|
If no argument given, copy the entire rest of the line.
|
|
|
|
The characters copied are inserted in the buffer before point."
|
|
|
|
(interactive "P")
|
|
|
|
(let ((cc (current-column))
|
|
|
|
n
|
|
|
|
(string ""))
|
|
|
|
(save-excursion
|
|
|
|
(beginning-of-line)
|
|
|
|
(backward-char 1)
|
|
|
|
(skip-chars-backward "\ \t\n")
|
|
|
|
(move-to-column cc)
|
|
|
|
;; Default is enough to copy the whole rest of the line.
|
|
|
|
(setq n (if arg (prefix-numeric-value arg) (point-max)))
|
|
|
|
;; If current column winds up in middle of a tab,
|
|
|
|
;; copy appropriate number of "virtual" space chars.
|
|
|
|
(if (< cc (current-column))
|
|
|
|
(if (= (preceding-char) ?\t)
|
|
|
|
(progn
|
2006-11-27 14:00:11 +00:00
|
|
|
(setq string (make-string (min n (- (current-column) cc)) ?\s))
|
1989-10-31 15:59:53 +00:00
|
|
|
(setq n (- n (min n (- (current-column) cc)))))
|
|
|
|
;; In middle of ctl char => copy that whole char.
|
|
|
|
(backward-char 1)))
|
|
|
|
(setq string (concat string
|
|
|
|
(buffer-substring
|
|
|
|
(point)
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
(min (line-end-position)
|
1989-10-31 15:59:53 +00:00
|
|
|
(+ n (point)))))))
|
|
|
|
(insert string)))
|
1992-05-30 22:12:04 +00:00
|
|
|
|
2003-09-24 08:52:09 +00:00
|
|
|
;; Variation of `zap-to-char'.
|
|
|
|
|
|
|
|
(defun zap-up-to-char (arg char)
|
2006-11-27 17:02:43 +00:00
|
|
|
"Kill up to, but not including ARGth occurrence of CHAR.
|
2003-09-24 08:52:09 +00:00
|
|
|
Case is ignored if `case-fold-search' is non-nil in the current buffer.
|
|
|
|
Goes backward if ARG is negative; error if CHAR not found.
|
|
|
|
Ignores CHAR at point."
|
|
|
|
(interactive "p\ncZap up to char: ")
|
|
|
|
(let ((direction (if (>= arg 0) 1 -1)))
|
|
|
|
(kill-region (point)
|
|
|
|
(progn
|
|
|
|
(forward-char direction)
|
|
|
|
(unwind-protect
|
|
|
|
(search-forward (char-to-string char) nil nil arg)
|
|
|
|
(backward-char direction))
|
|
|
|
(point)))))
|
|
|
|
|
2003-05-30 23:15:40 +00:00
|
|
|
;; These were added with an eye to making possible a more CCA-compatible
|
|
|
|
;; command set; but that turned out not to be interesting.
|
|
|
|
|
|
|
|
(defun mark-beginning-of-buffer ()
|
|
|
|
"Set mark at the beginning of the buffer."
|
|
|
|
(interactive)
|
|
|
|
(push-mark (point-min)))
|
|
|
|
|
|
|
|
(defun mark-end-of-buffer ()
|
|
|
|
"Set mark at the end of the buffer."
|
|
|
|
(interactive)
|
|
|
|
(push-mark (point-max)))
|
|
|
|
|
|
|
|
(defun upcase-char (arg)
|
2003-09-24 08:52:09 +00:00
|
|
|
"Uppercasify ARG chars starting from point. Point doesn't move."
|
2003-05-30 23:15:40 +00:00
|
|
|
(interactive "p")
|
|
|
|
(save-excursion
|
|
|
|
(upcase-region (point) (progn (forward-char arg) (point)))))
|
|
|
|
|
|
|
|
(defun forward-to-word (arg)
|
|
|
|
"Move forward until encountering the beginning of a word.
|
|
|
|
With argument, do this that many times."
|
2012-08-22 17:12:35 +00:00
|
|
|
(interactive "^p")
|
2003-05-30 23:15:40 +00:00
|
|
|
(or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg)
|
|
|
|
(goto-char (if (> arg 0) (point-max) (point-min)))))
|
|
|
|
|
|
|
|
(defun backward-to-word (arg)
|
|
|
|
"Move backward until encountering the end of a word.
|
|
|
|
With argument, do this that many times."
|
2012-08-22 17:12:35 +00:00
|
|
|
(interactive "^p")
|
2003-05-30 23:15:40 +00:00
|
|
|
(forward-to-word (- arg)))
|
|
|
|
|
2008-12-28 23:48:21 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun butterfly ()
|
2008-12-28 23:50:47 +00:00
|
|
|
"Use butterflies to flip the desired bit on the drive platter.
|
|
|
|
Open hands and let the delicate wings flap once. The disturbance
|
|
|
|
ripples outward, changing the flow of the eddy currents in the
|
|
|
|
upper atmosphere. These cause momentary pockets of higher-pressure
|
|
|
|
air to form, which act as lenses that deflect incoming cosmic rays,
|
|
|
|
focusing them to strike the drive platter and flip the desired bit.
|
|
|
|
You can type `M-x butterfly C-M-c' to run it. This is a permuted
|
|
|
|
variation of `C-x M-c M-butterfly' from url `http://xkcd.com/378/'."
|
2008-12-28 23:48:21 +00:00
|
|
|
(interactive)
|
|
|
|
(if (yes-or-no-p "Do you really want to unleash the powers of the butterfly? ")
|
|
|
|
(progn
|
2008-12-28 23:50:47 +00:00
|
|
|
(switch-to-buffer (get-buffer-create "*butterfly*"))
|
|
|
|
(erase-buffer)
|
|
|
|
(sit-for 0)
|
|
|
|
(animate-string "Amazing physics going on..."
|
|
|
|
(/ (window-height) 2) (- (/ (window-width) 2) 12))
|
2008-12-28 23:48:21 +00:00
|
|
|
(sit-for (* 5 (/ (abs (random)) (float most-positive-fixnum))))
|
|
|
|
(message "Successfully flipped one bit!"))
|
2008-12-28 23:50:47 +00:00
|
|
|
(message "Well, then go to xkcd.com!")
|
|
|
|
(browse-url "http://xkcd.com/378/")))
|
2008-12-28 23:48:21 +00:00
|
|
|
|
2011-05-09 15:52:57 +00:00
|
|
|
;; A command to list dynamically loaded libraries. This useful in
|
|
|
|
;; environments where dynamic-library-alist is used, i.e., Windows
|
|
|
|
|
|
|
|
(defvar list-dynamic-libraries--loaded-only-p)
|
|
|
|
(make-variable-buffer-local 'list-dynamic-libraries--loaded-only-p)
|
|
|
|
|
2012-04-10 14:16:05 +00:00
|
|
|
(defun list-dynamic-libraries--loaded (from)
|
|
|
|
"Compute the \"Loaded from\" column.
|
|
|
|
Internal use only."
|
|
|
|
(if from
|
|
|
|
(let ((name (car from))
|
|
|
|
(path (or (cdr from) "<unknown>")))
|
|
|
|
;; This is a roundabout way to change the tooltip without
|
|
|
|
;; having to replace the default printer function
|
|
|
|
(propertize name
|
|
|
|
'display (propertize name
|
|
|
|
'help-echo (concat "Loaded from: " path))))
|
|
|
|
""))
|
|
|
|
|
2011-05-09 15:52:57 +00:00
|
|
|
(defun list-dynamic-libraries--refresh ()
|
|
|
|
"Recompute the list of dynamic libraries.
|
|
|
|
Internal use only."
|
|
|
|
(setq tabulated-list-format ; recomputed because column widths can change
|
|
|
|
(let ((max-id-len 0) (max-name-len 0))
|
|
|
|
(dolist (lib dynamic-library-alist)
|
|
|
|
(let ((id-len (length (symbol-name (car lib))))
|
|
|
|
(name-len (apply 'max (mapcar 'length (cdr lib)))))
|
|
|
|
(when (> id-len max-id-len) (setq max-id-len id-len))
|
|
|
|
(when (> name-len max-name-len) (setq max-name-len name-len))))
|
|
|
|
(vector (list "Library" (1+ max-id-len) t)
|
|
|
|
(list "Loaded from" (1+ max-name-len) t)
|
|
|
|
(list "Candidate names" 0 t))))
|
2011-06-21 10:04:28 +00:00
|
|
|
(tabulated-list-init-header)
|
2011-05-09 15:52:57 +00:00
|
|
|
(setq tabulated-list-entries nil)
|
|
|
|
(dolist (lib dynamic-library-alist)
|
|
|
|
(let* ((id (car lib))
|
|
|
|
(from (get id :loaded-from)))
|
|
|
|
(when (or from
|
|
|
|
(not list-dynamic-libraries--loaded-only-p))
|
|
|
|
(push (list id (vector (symbol-name id)
|
2012-04-10 14:16:05 +00:00
|
|
|
(list-dynamic-libraries--loaded from)
|
2011-05-09 15:52:57 +00:00
|
|
|
(mapconcat 'identity (cdr lib) ", ")))
|
|
|
|
tabulated-list-entries)))))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun list-dynamic-libraries (&optional loaded-only-p buffer)
|
|
|
|
"Display a list of all dynamic libraries known to Emacs.
|
|
|
|
\(These are the libraries listed in `dynamic-library-alist'.)
|
|
|
|
If optional argument LOADED-ONLY-P (interactively, prefix arg)
|
|
|
|
is non-nil, only libraries already loaded are listed.
|
|
|
|
Optional argument BUFFER specifies a buffer to use, instead of
|
|
|
|
\"*Dynamic Libraries*\".
|
|
|
|
The return value is always nil."
|
|
|
|
(interactive "P")
|
|
|
|
(unless (bufferp buffer)
|
|
|
|
(setq buffer (get-buffer-create "*Dynamic Libraries*")))
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(tabulated-list-mode)
|
|
|
|
(setq tabulated-list-sort-key (cons "Library" nil))
|
|
|
|
(add-hook 'tabulated-list-revert-hook 'list-dynamic-libraries--refresh nil t)
|
|
|
|
(setq list-dynamic-libraries--loaded-only-p loaded-only-p)
|
|
|
|
(list-dynamic-libraries--refresh)
|
|
|
|
(tabulated-list-print))
|
|
|
|
(display-buffer buffer)
|
|
|
|
nil)
|
|
|
|
|
1997-06-22 18:57:55 +00:00
|
|
|
(provide 'misc)
|
|
|
|
|
1992-05-30 22:12:04 +00:00
|
|
|
;;; misc.el ends here
|