More moving

This commit is contained in:
Benson Chu 2020-09-26 18:58:54 -05:00
parent a0674604f2
commit 3201ffb736
5 changed files with 83 additions and 35 deletions

View file

@ -233,41 +233,6 @@
(setq org-now-location
nil)
#+end_src
* org agenda goto headline AND narrow
#+begin_src emacs-lisp
(defun my/org-agenda-narrow ()
(interactive)
(org-agenda-switch-to)
(org-narrow-to-subtree)
(outline-show-branches))
(define-key org-agenda-mode-map (kbd "S-<return>") 'my/org-agenda-narrow)
#+end_src
* Keybindings
#+begin_src emacs-lisp
(use-package org)
(require 'org-agenda)
;; This is for safety
(define-key org-mode-map (kbd "C-S-<backspace>")
(lambda (arg)
(interactive "P")
(if (string= "yes" (completing-read "Are you sure you want to use that keybinding? " '("yes" "no")))
(kill-whole-line arg)
(org-cut-subtree))))
#+end_src
* count archive tree characters
#+begin_src emacs-lisp
(defun my/org-count-subtree-characters ()
(interactive)
(save-window-excursion
(org-agenda-goto t)
(org-mark-subtree)
(message (format "This subtree has %d characters. " (- (region-end) (region-beginning))))))
(define-key org-agenda-mode-map (kbd "C") #'my/org-count-subtree-characters)
#+end_src
* More alternative views
#+begin_src emacs-lisp
(defun cfw:open-org-calendar-no-projects (&args)

View file

@ -39,6 +39,8 @@
(require 'org-ql-custom-stuck-projects)
(require 'org-scan-tags-indent)
(require 'org-archive-tree-count)
(define-key org-agenda-mode-map (kbd "a") 'org-agenda)

View file

@ -34,6 +34,7 @@
(require 'my-org-indent)
(require 'my-org-agenda-commands)
(require 'my-org-capture-templates)
(require 'org-other-additions)
(require 'self-talk-mode)

View file

@ -0,0 +1,37 @@
;;; org-archive-tree-count.el --- -*- lexical-binding: t -*-
;; Copyright (C) 2020 Benson Chu
;; Author: Benson Chu <bensonchu457@gmail.com>
;; Created: [2020-09-26 18:48]
;; This file is not part of GNU Emacs
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(defun my/org-count-subtree-characters ()
(interactive)
(save-window-excursion
(org-agenda-goto t)
(org-mark-subtree)
(message (format "This subtree has %d characters. " (- (region-end) (region-beginning))))))
(define-key org-agenda-mode-map (kbd "C") #'my/org-count-subtree-characters)
(provide 'org-archive-tree-count)
;;; org-archive-tree-count.el ends here

View file

@ -0,0 +1,43 @@
;;; org-other-additions.el --- -*- lexical-binding: t -*-
;; Copyright (C) 2020 Benson Chu
;; Author: Benson Chu <bensonchu457@gmail.com>
;; Created: [2020-09-26 18:48]
;; This file is not part of GNU Emacs
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(defun my/org-agenda-narrow ()
(interactive)
(org-agenda-switch-to)
(org-narrow-to-subtree)
(outline-show-branches))
(define-key org-agenda-mode-map (kbd "S-<return>") 'my/org-agenda-narrow)
(defun org-check-before-killing-line (arg)
(interactive "P")
(if (string= "yes" (completing-read "Are you sure you want to use that keybinding? " '("yes" "no")))
(kill-whole-line arg)
(org-cut-subtree)))
(define-key org-mode-map (kbd "C-S-<backspace>") #'org-check-before-killing-line)
(provide 'org-other-additions)
;;; org-other-additions.el ends here