Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zonuexe/region-convert.el
Convert string in region by Lisp function
https://github.com/zonuexe/region-convert.el
Last synced: about 2 months ago
JSON representation
Convert string in region by Lisp function
- Host: GitHub
- URL: https://github.com/zonuexe/region-convert.el
- Owner: zonuexe
- Created: 2019-01-04T11:10:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T16:56:05.000Z (over 3 years ago)
- Last Synced: 2024-10-27T05:23:43.861Z (about 2 months ago)
- Language: Emacs Lisp
- Size: 1.33 MB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* Region Convert (=region-convert.el=)
#+BEGIN_HTML
#+END_HTML
[[file:demo-region-convert.gif]]
** Interactive1. Select text region (mark region)
2. =M-x region-convert= (or press binding key)
3. Input function name (completing read)*** Key binding
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "C-c r") 'region-convert)
#+END_SRC** Use from Lisp
#+BEGIN_SRC emacs-lisp
(region-convert 5 22 'upcase)
#+END_SRC