tvl-depot/users/wpcarro/emacs/.emacs.d/wpc/region.el

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
695 B
EmacsLisp
Raw Normal View History

2020-08-31 15:49:05 +02:00
;;; region.el --- Functions for working with regions -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
2020-08-31 15:49:05 +02:00
;; Version: 0.0.1
;; Package-Requires: ((emacs "24"))
;;; Commentary:
;; Sometimes Emacs's function names and argument ordering is great; other times,
;; it isn't.
;;; Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Library
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2020-08-31 15:49:05 +02:00
(defun region-to-string ()
"Return the string in the active region."
(buffer-substring-no-properties (region-beginning)
(region-end)))
(provide 'region)
;;; region.el ends here