[Utils] Remove obsolete org utility function

This commit is contained in:
Daniel - 2018-08-27 21:28:39 +02:00
parent cc66038814
commit 48ce381845
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
1 changed files with 0 additions and 20 deletions

View File

@ -315,26 +315,6 @@ path."
;;; Org Utilities
(defun db/bank-csv-to-org-table ()
(interactive)
(goto-char (point-min))
(kill-line 8)
(while (re-search-forward "^\"\\|\"$\\|\";\"" nil :no-error)
(replace-match "|"))
(goto-char (point-min))
(org-mode)
(org-table-align)
;; move columns around
(cl-loop
for (word . count) in '(("Wertstellung" . 6)
("Umsatzart" . 6)
("Buchungsdetails" . 3))
do (progn (goto-char (point-min))
(search-forward word)
(dotimes (_ count)
(org-table-move-column-right))))
(goto-char (point-min)))
(defun db/org-cleanup-continuous-clocks ()
"Join continuous clock lines in the current buffer."
(interactive)