[elpa] externals/company updated (b8224f2 -> b4145d3)

2021-04-01 Thread ELPA Syncer
elpasync pushed a change to branch externals/company.

  from  b8224f2   Merge pull request #1083 from mohkale/unicode-icons
   new  a184911   Add choices, tty, detect
   new  86443ad   Make custom
   new  061d2a2   Fix review
   new  b4145d3   Merge pull request #1085 from jcs-PR/icon


Summary of changes:
 company.el | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)



[elpa] externals/company a184911 1/4: Add choices, tty, detect

2021-04-01 Thread ELPA Syncer
branch: externals/company
commit a1849117dfc979a63e0671dbf0f247fb94fa4414
Author: JenChieh 
Commit: JenChieh 

Add choices, tty, detect
---
 company.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/company.el b/company.el
index 08d30a3..c330d36 100644
--- a/company.el
+++ b/company.el
@@ -1506,6 +1506,8 @@ image for the returned kind image. Function is called 
with (nil nil) to get
 the default margin."
   :type '(choice
   (const :tag "Disabled" nil)
+  (const :tag "Detect icons theme base on conditions" 
company-detect-icons-margin)
+  (const :tag "TTY icons theme" company-text-icons-margin)
   (const :tag "VScode dark icons theme" 
company-vscode-dark-icons-margin)
   (const :tag "VScode light icons theme" 
company-vscode-light-icons-margin)
   (function :tag "Custom icon function.")))



[elpa] externals/company 86443ad 2/4: Make custom

2021-04-01 Thread ELPA Syncer
branch: externals/company
commit 86443adbec2c0bc5dbcd5ba942684da42ea96f3e
Author: JenChieh 
Commit: JenChieh 

Make custom
---
 company.el | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/company.el b/company.el
index c330d36..9876de6 100644
--- a/company.el
+++ b/company.el
@@ -1451,7 +1451,7 @@ end of the match."
 candidate
 selected))
 
-(defvar company-text-icons-mapping
+(defcustom company-text-icons-mapping
   '((array . "Α")
 (boolean . "β")
 (class . "γ")
@@ -1478,7 +1478,10 @@ end of the match."
 (snippet . "υ")
 (string . "φ")
 (struct . "Χ")
-(variable . "ѱ")))
+(variable . "ѱ"))
+  "List of text icons."
+  :type 'list
+  :group 'company)
 
 (defun company-text-icons-margin (candidate selected)
   "Margin function which returns unicode icons."



[elpa] externals/company b4145d3 4/4: Merge pull request #1085 from jcs-PR/icon

2021-04-01 Thread ELPA Syncer
branch: externals/company
commit b4145d3e23c976f51a7d511d68e15af38ce050fd
Merge: b8224f2 061d2a2
Author: Dmitry Gutov 
Commit: GitHub 

Merge pull request #1085 from jcs-PR/icon

Add choices, tty, detect
---
 company.el | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/company.el b/company.el
index 08d30a3..7f02140 100644
--- a/company.el
+++ b/company.el
@@ -1451,7 +1451,7 @@ end of the match."
 candidate
 selected))
 
-(defvar company-text-icons-mapping
+(defcustom company-text-icons-mapping
   '((array . "Α")
 (boolean . "β")
 (class . "γ")
@@ -1478,7 +1478,9 @@ end of the match."
 (snippet . "υ")
 (string . "φ")
 (struct . "Χ")
-(variable . "ѱ")))
+(variable . "ѱ"))
+  "Mapping of the text icons."
+  :type 'list)
 
 (defun company-text-icons-margin (candidate selected)
   "Margin function which returns unicode icons."
@@ -1506,6 +1508,8 @@ image for the returned kind image. Function is called 
with (nil nil) to get
 the default margin."
   :type '(choice
   (const :tag "Disabled" nil)
+  (const :tag "Detect icons theme base on conditions" 
company-detect-icons-margin)
+  (const :tag "TTY icons theme" company-text-icons-margin)
   (const :tag "VScode dark icons theme" 
company-vscode-dark-icons-margin)
   (const :tag "VScode light icons theme" 
company-vscode-light-icons-margin)
   (function :tag "Custom icon function.")))



[elpa] externals/company 061d2a2 3/4: Fix review

2021-04-01 Thread ELPA Syncer
branch: externals/company
commit 061d2a22c39c77b3cbd3f9a9d7302624e6dfcd3c
Author: JenChieh 
Commit: JenChieh 

Fix review
---
 company.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/company.el b/company.el
index 9876de6..7f02140 100644
--- a/company.el
+++ b/company.el
@@ -1479,9 +1479,8 @@ end of the match."
 (string . "φ")
 (struct . "Χ")
 (variable . "ѱ"))
-  "List of text icons."
-  :type 'list
-  :group 'company)
+  "Mapping of the text icons."
+  :type 'list)
 
 (defun company-text-icons-margin (candidate selected)
   "Margin function which returns unicode icons."



[elpa] externals-release/org f7e0e17: ox-texinfo: Fix colons removal in menu entries

2021-04-01 Thread ELPA Syncer
branch: externals-release/org
commit f7e0e17e828595324f5e3e6a319e51328a197f97
Author: Nicolas Goaziou 
Commit: Nicolas Goaziou 

ox-texinfo: Fix colons removal in menu entries

* lisp/ox-texinfo.el (org-texinfo--format-entries): Fix regexp
matching unwanted colons.

Reported-by: Ramesh Nedunchezian 

---
 lisp/ox-texinfo.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el
index cf08054..fbf966e 100644
--- a/lisp/ox-texinfo.el
+++ b/lisp/ox-texinfo.el
@@ -1192,7 +1192,7 @@ a plist containing contextual information."
  ;; Colons are used as a separator between title and node
  ;; name.  Remove them.
  (replace-regexp-in-string
-  "[ \t]+:+" ""
+  "[ \t]*:+" ""
   (org-texinfo--sanitize-title
(org-export-get-alt-title h info) info)))
 (node (org-texinfo--get-node h info))



[elpa] externals/org updated (f03cba1 -> 635920c)

2021-04-01 Thread ELPA Syncer
elpasync pushed a change to branch externals/org.

  from  f03cba1   Merge branch 'maint'
   new  f7e0e17   ox-texinfo: Fix colons removal in menu entries
   new  635920c   Merge branch 'maint'


Summary of changes:
 lisp/ox-texinfo.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[elpa] externals/org 635920c: Merge branch 'maint'

2021-04-01 Thread ELPA Syncer
branch: externals/org
commit 635920c730e861ca667b99358c7b4f3b153bce0f
Merge: f03cba1 f7e0e17
Author: Nicolas Goaziou 
Commit: Nicolas Goaziou 

Merge branch 'maint'
---
 lisp/ox-texinfo.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el
index 6e8d0d6..770e839 100644
--- a/lisp/ox-texinfo.el
+++ b/lisp/ox-texinfo.el
@@ -1192,7 +1192,7 @@ a plist containing contextual information."
  ;; Colons are used as a separator between title and node
  ;; name.  Remove them.
  (replace-regexp-in-string
-  "[ \t]+:+" ""
+  "[ \t]*:+" ""
   (org-texinfo--sanitize-title
(org-export-get-alt-title h info) info)))
 (node (org-texinfo--get-node h info))