123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- (eval-when-compile
- (require 'tabulated-list))
- (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)
-
- (setq n (if arg (prefix-numeric-value arg) (point-max)))
-
-
- (if (< cc (current-column))
- (if (= (preceding-char) ?\t)
- (progn
- (setq string (make-string (min n (- (current-column) cc)) ?\s))
- (setq n (- n (min n (- (current-column) cc)))))
-
- (backward-char 1)))
- (setq string (concat string
- (buffer-substring
- (point)
- (min (line-end-position)
- (+ n (point)))))))
- (insert string)))
- (defun zap-up-to-char (arg char)
- "Kill up to, but not including ARGth occurrence of CHAR.
- 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)))))
- (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)
- "Uppercasify ARG chars starting from point. Point doesn't move."
- (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."
- (interactive "p")
- (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."
- (interactive "p")
- (forward-to-word (- arg)))
- (defun butterfly ()
- "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/'."
- (interactive)
- (if (yes-or-no-p "Do you really want to unleash the powers of the butterfly? ")
- (progn
- (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))
- (sit-for (* 5 (/ (abs (random)) (float most-positive-fixnum))))
- (message "Successfully flipped one bit!"))
- (message "Well, then go to xkcd.com!")
- (browse-url "http://xkcd.com/378/")))
- (defvar list-dynamic-libraries--loaded-only-p)
- (make-variable-buffer-local 'list-dynamic-libraries--loaded-only-p)
- (defun list-dynamic-libraries--refresh ()
- "Recompute the list of dynamic libraries.
- Internal use only."
- (setq tabulated-list-format
- (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))))
- (tabulated-list-init-header)
- (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)
- (or from "")
- (mapconcat 'identity (cdr lib) ", ")))
- tabulated-list-entries)))))
- (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)
- (provide 'misc)
|