fix: balanced parens after cleanup
This commit is contained in:
@@ -800,9 +800,6 @@ fc --> UC2
|
|||||||
fc --> UC3
|
fc --> UC3
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+RESULTS:
|
|
||||||
[[/tmp/babel-pg1Nry/plantuml-SHtP1g.png][/tmp/babel-pg1Nry/plantuml-SHtP1g.png]]
|
|
||||||
|
|
||||||
* Elgantt
|
* Elgantt
|
||||||
|
|
||||||
Broken for now..
|
Broken for now..
|
||||||
@@ -1020,9 +1017,6 @@ Broken for now..
|
|||||||
(message "No file!")))
|
(message "No file!")))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+RESULTS:
|
|
||||||
: elgantt-open-current-org-file
|
|
||||||
|
|
||||||
* Org Roam
|
* Org Roam
|
||||||
** Static Path
|
** Static Path
|
||||||
|
|
||||||
@@ -3335,7 +3329,7 @@ with a project-tagged custom agenda entry and optional CONTEXT-TAG (mu4e/agenda)
|
|||||||
;; 3. Build index Org block if absent
|
;; 3. Build index Org block if absent
|
||||||
(unless (file-exists-p org-file)
|
(unless (file-exists-p org-file)
|
||||||
(with-temp-file org-file
|
(with-temp-file org-file
|
||||||
(insert (format "#+TITLE: %s\n#+DATE: %s\n#+CATEGORY: %s\n#+FILETAGS: :%s:%s:\n\n* Setup\nTODO %s\n\n* Bookmarks\n** Example link\n[[file:./%s.org][Example link for %s]]\n\n* Contacts\n** Contact Name\n:PROPERTIES:\n:EMAIL: contact@example.com\n:ROLE: Client / Partner\n:END:\n\n[[mu4e:from:contact@example.com][Correspondence with Contact Name]]\n\n* Tasks\n** TODO First task for %s\n"
|
(insert (format "#+TITLE: %s\n#+DATE: %s\n#+CATEGORY: %s\n#+FILETAGS: :%s:%s:\n\n* Contacts\n** Contact Name\n:PROPERTIES:\n:EMAIL:[[mu4e:from:contact@example.com]]\n:ROLE: Client / Partner\n:END:\n\n* Tasks\n** TODO First task for %s\n"
|
||||||
node-name
|
node-name
|
||||||
(format-time-string "[%Y-%m-%d %a]")
|
(format-time-string "[%Y-%m-%d %a]")
|
||||||
node-name
|
node-name
|
||||||
@@ -3556,8 +3550,6 @@ to .org files under the project root."
|
|||||||
(let ((default-directory (projectile-project-root)))
|
(let ((default-directory (projectile-project-root)))
|
||||||
(gortium/read-dir-local 'gortium/project-tag))))
|
(gortium/read-dir-local 'gortium/project-tag))))
|
||||||
|
|
||||||
(
|
|
||||||
(
|
|
||||||
(defun gortium/bookmark-set ()
|
(defun gortium/bookmark-set ()
|
||||||
"Save a bookmark. Prompts: (g)lobal or (p)roject.
|
"Save a bookmark. Prompts: (g)lobal or (p)roject.
|
||||||
Project bookmarks go to .bookmarks file in project root."
|
Project bookmarks go to .bookmarks file in project root."
|
||||||
@@ -3617,7 +3609,6 @@ Project bookmarks are deleted from the .bookmarks file in the project root."
|
|||||||
(bookmark-save nil proj-file t)
|
(bookmark-save nil proj-file t)
|
||||||
(message "Deleted project bookmark: %s" bm-name))))))))))))
|
(message "Deleted project bookmark: %s" bm-name))))))))))))
|
||||||
|
|
||||||
(
|
|
||||||
(defun gortium/transfer-to-project ()
|
(defun gortium/transfer-to-project ()
|
||||||
"Transfer a global bookmark to the current project's .bookmarks."
|
"Transfer a global bookmark to the current project's .bookmarks."
|
||||||
(interactive)
|
(interactive)
|
||||||
|
|||||||
@@ -2413,7 +2413,7 @@ with a project-tagged custom agenda entry and optional CONTEXT-TAG (mu4e/agenda)
|
|||||||
;; 3. Build index Org block if absent
|
;; 3. Build index Org block if absent
|
||||||
(unless (file-exists-p org-file)
|
(unless (file-exists-p org-file)
|
||||||
(with-temp-file org-file
|
(with-temp-file org-file
|
||||||
(insert (format "#+TITLE: %s\n#+DATE: %s\n#+CATEGORY: %s\n#+FILETAGS: :%s:%s:\n\n* Setup\nTODO %s\n\n* Bookmarks\n** Example link\n[[file:./%s.org][Example link for %s]]\n\n* Contacts\n** Contact Name\n:PROPERTIES:\n:EMAIL: contact@example.com\n:ROLE: Client / Partner\n:END:\n\n[[mu4e:from:contact@example.com][Correspondence with Contact Name]]\n\n* Tasks\n** TODO First task for %s\n"
|
(insert (format "#+TITLE: %s\n#+DATE: %s\n#+CATEGORY: %s\n#+FILETAGS: :%s:%s:\n\n* Contacts\n** Contact Name\n:PROPERTIES:\n:EMAIL:[[mu4e:from:contact@example.com]]\n:ROLE: Client / Partner\n:END:\n\n* Tasks\n** TODO First task for %s\n"
|
||||||
node-name
|
node-name
|
||||||
(format-time-string "[%Y-%m-%d %a]")
|
(format-time-string "[%Y-%m-%d %a]")
|
||||||
node-name
|
node-name
|
||||||
@@ -2623,8 +2623,6 @@ to .org files under the project root."
|
|||||||
(let ((default-directory (projectile-project-root)))
|
(let ((default-directory (projectile-project-root)))
|
||||||
(gortium/read-dir-local 'gortium/project-tag))))
|
(gortium/read-dir-local 'gortium/project-tag))))
|
||||||
|
|
||||||
(
|
|
||||||
(
|
|
||||||
(defun gortium/bookmark-set ()
|
(defun gortium/bookmark-set ()
|
||||||
"Save a bookmark. Prompts: (g)lobal or (p)roject.
|
"Save a bookmark. Prompts: (g)lobal or (p)roject.
|
||||||
Project bookmarks go to .bookmarks file in project root."
|
Project bookmarks go to .bookmarks file in project root."
|
||||||
@@ -2684,7 +2682,6 @@ Project bookmarks are deleted from the .bookmarks file in the project root."
|
|||||||
(bookmark-save nil proj-file t)
|
(bookmark-save nil proj-file t)
|
||||||
(message "Deleted project bookmark: %s" bm-name))))))))))))
|
(message "Deleted project bookmark: %s" bm-name))))))))))))
|
||||||
|
|
||||||
(
|
|
||||||
(defun gortium/transfer-to-project ()
|
(defun gortium/transfer-to-project ()
|
||||||
"Transfer a global bookmark to the current project's .bookmarks."
|
"Transfer a global bookmark to the current project's .bookmarks."
|
||||||
(interactive)
|
(interactive)
|
||||||
|
|||||||
Reference in New Issue
Block a user