adding a convert to table from csv

This commit is contained in:
Chris Cochrun 2022-12-17 10:00:12 -06:00
parent 064e0d4881
commit 1f2721158c
3 changed files with 9 additions and 1 deletions

View file

@ -341,6 +341,10 @@
(set-face-attribute 'org-block-end-line nil :inherit 'org-block-begin-line)
(set-face-attribute 'org-quote nil :background "#242631" :inherit 'fixed-pitch))
(defun chris/org-convert-csv-table (beg end)
(interactive (list (mark) (point)))
(org-table-convert-region beg end ","))
(defun chris/org-agenda-setup ()
(interactive)
(org-indent-mode +1)