Add omp.el

For now, only a simple mark-line function.
This commit is contained in:
Oliver Payne 2023-03-07 22:34:00 +00:00
parent 0fa0acaa58
commit d646aaaa9b
1 changed files with 5 additions and 0 deletions

5
omp.el Normal file
View File

@ -0,0 +1,5 @@
(defun omp/mark-line ()
(interactive)
(move-beginning-of-line nil)
(push-mark (point) nil t)
(move-end-of-line nil))