update packages
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
(define-package "org-cliplink" "20190608.2134" "insert org-mode links from the clipboard"
|
||||
(define-package "org-cliplink" "20201126.1020" "insert org-mode links from the clipboard"
|
||||
'((emacs "24.4"))
|
||||
:commit "82402cae7e118d67de7328417fd018a18f95fac2" :authors
|
||||
:commit "13e0940b65d22bec34e2de4bc8cba1412a7abfbc" :authors
|
||||
'(("Alexey Kutepov" . "reximkut@gmail.com"))
|
||||
:maintainer
|
||||
'("Alexey Kutepov" . "reximkut@gmail.com")
|
||||
|
||||
@@ -10,9 +10,9 @@
|
||||
(when s
|
||||
(if (> max-length 3)
|
||||
(if (> (length s) max-length)
|
||||
(concat (substring s 0 (- max-length 3)) "...")
|
||||
(concat (substring s 0 (- max-length 3)) org-cliplink-ellipsis)
|
||||
s)
|
||||
"..."))
|
||||
org-cliplink-ellipsis))
|
||||
s))
|
||||
|
||||
(provide 'org-cliplink-string)
|
||||
|
||||
@@ -383,6 +383,11 @@ possible value is 4."
|
||||
:group 'org-cliplink
|
||||
:type '(choice integer (const :tag "off" nil)))
|
||||
|
||||
(defcustom org-cliplink-ellipsis "..."
|
||||
"String to mark the end of truncated titles"
|
||||
:group 'org-cliplink
|
||||
:type 'string)
|
||||
|
||||
(defcustom org-cliplink-secrets-path "~/.org-cliplink-secrets.el"
|
||||
"Path to file that keeps your org-cliplink related secrets.
|
||||
It can be any sensitive information like password to different
|
||||
|
||||
Reference in New Issue
Block a user