-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaph-org-table.el
executable file
·60 lines (44 loc) · 1.71 KB
/
aph-org-table.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
;;; aph-org-table.el --- Extensions for `org-table' -*- lexical-binding: t; -*-
;; Copyright (C) 2016 Aaron Harris
;; Author: Aaron Harris <[email protected]>
;; Keywords: wp
;; Dependencies: `org-table'
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Commands for use in `org-mode' tables.
;;; Code:
(require 'org-table)
;;;; Subroutines
;;==============
(defun aph/org-table-end-of-this-field ()
"As `org-table-end-of-field', but never change fields.
If already at or after the end of the current field, do not move
point."
(interactive)
(unless (and (org-table-p)
(looking-at-p " +|"))
(org-table-end-of-field 1)))
;;;; Editing Commands
;;===================
;;;###autoload
(defun aph/org-table-clear-row-forward ()
"Erase contents of table cells from point to end of row.
If point is not inside an Org table, signal an error."
(interactive)
(unless (org-table-p)
(error "Not in Org table"))
(save-excursion
(save-match-data
(while (re-search-forward "[^|]" (point-at-eol) :noerror)
(replace-match " ")))))
(provide 'aph-org-table)
;;; aph-org-table.el ends here