[org] Add org-cliplink package

This commit is contained in:
bb2020 2019-05-10 15:41:00 +03:00 committed by smile13241324
parent e22cfadf1f
commit d7686199c8
3 changed files with 10 additions and 0 deletions

View File

@ -2146,6 +2146,7 @@ Other:
- Moved =eshell-z-freq-dir-hash-table-file-name= into cache dir
(thanks to bb2020)
- Enabled ~TAB~ completion in =eshell= with =Helm= (thanks to bb2020)
- Added ~SPC m i L~ as =org-cliplink= into =org= layer (thanks to bb2020)
- Added =eshell= =Ivy= completion bindings (thanks to bb2020):
- ~M-l~ =spacemacs/ivy-eshell-history=
- ~TAB~ =spacemacs/pcomplete-std-complete=

View File

@ -494,6 +494,7 @@ are also available.
| ~SPC m i i~ | org-insert-item |
| ~SPC m i K~ | spacemacs/insert-keybinding-org |
| ~SPC m i l~ | org-insert-link |
| ~SPC m i L~ | org-cliplink |
| ~SPC m i n~ | org-add-note |
| ~SPC m i p~ | org-set-property |
| ~SPC m i s~ | org-insert-subheading |

View File

@ -30,6 +30,7 @@
org-mime
org-pomodoro
org-present
org-cliplink
(org-projectile :requires projectile)
(ox-epub :toggle org-enable-epub-support)
(ox-twbs :toggle org-enable-bootstrap-support)
@ -645,6 +646,13 @@ Headline^^ Visit entry^^ Filter^^ Da
(add-hook 'org-present-mode-hook 'spacemacs//org-present-start)
(add-hook 'org-present-mode-quit-hook 'spacemacs//org-present-end))))
(defun org/init-org-cliplink ()
(use-package org-cliplink
:defer t
:init
(spacemacs/set-leader-keys-for-major-mode 'org-mode
"iL" 'org-cliplink)))
(defun org/init-org-projectile ()
(use-package org-projectile
:commands (org-projectile-location-for-project)