Mercurial > hgrepos > hgweb.cgi > yatex
view comment.el @ 330:9cef5d10a0f1 dev
First Drag-n-Drop support
author | HIROSE Yuuji <yuuji@gentei.org> |
---|---|
date | Tue, 16 Dec 2014 11:12:38 +0900 |
parents | c16a10460ce5 |
children |
line wrap: on
line source
;;; -*- Emacs-Lisp -*- ;;; comment/uncomment region for emacs. ;;; comment.el rev.0.1 ;;; (c) 1992, 2002 by HIROSE Yuuji.(yuuji@yatex.org) ;;; Last modified Mon Nov 25 18:33:23 2002 on firestorm ;;; Rename `comment-region' to `comment-out-region' for standard ;;; Emacs-19 function. (provide 'comment) (defvar current-comment-prefix "> " "*Default prefix string") (defun cite-region (beg end) (save-excursion (goto-char (max beg end)) (if (bolp) (forward-line -1)) (if (string= string "") (setq string current-comment-prefix) (setq current-comment-prefix string)) (save-restriction (narrow-to-region (min beg end) (point)) (goto-char (point-min)) (message "%s" string) (while (re-search-forward "^" nil t) (replace-match string)) )) ) (defun comment-out-region (string &optional beg end once) "Inserts STRING at the beginning of every line in the region specified BEG and END. Called interactively, STRING defaults to comment-start (or '> ' if none is defined) unless a prefix argument is given, in which case it prompts for a string. Optional second argument ONCE is only for compatibility for uncomment-region. It has no means now." (interactive (list (if current-prefix-arg (read-string (concat "String to insert" (format "(default \"%s\")" current-comment-prefix " ") ": ")) current-comment-prefix))) (if (not (stringp string)) (setq string current-comment-prefix)) (cite-region (or beg (region-beginning)) (or end (region-end))) ) (defun uncomment-out-region (string &optional beg end once) "Deletes STRING from the beginning of every line in the region. Called interactively, STRING defaults to comment-start (or '> ' if none is defined) unless a prefix argument is given, in which case it prompts for a string. Optional second argument ONCE restricts deletion to first occurance of STRING on each line." (interactive (list (if current-prefix-arg (read-string (concat "String to delete" (format "(default \"%s\")" current-comment-prefix " ") ": ")) current-comment-prefix))) (if (not (stringp string)) (setq string current-comment-prefix)) (save-excursion (save-restriction (narrow-to-region (or beg (region-beginning)) (or end (region-end))) (goto-char (point-min)) (while (re-search-forward (concat "^" string) nil t) (replace-match "") (if once (end-of-line))) )) ) (defun cite-file (filename) "insert the file with citation string." (interactive "FCite-file: ") (let* ((string (read-string (format "Citation string (default \"%s\"): " current-comment-prefix) )) (ins-tail (car (cdr (insert-file-contents filename))))) (save-excursion (cite-region (point) (+ (point) ins-tail)))) )