emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master b83eb6d 04/34: Readme


From: Vitalie Spinu
Subject: [elpa] master b83eb6d 04/34: Readme
Date: Tue, 7 May 2019 16:05:24 -0400 (EDT)

branch: master
commit b83eb6dc124d435895485a710b9ed3ef62ae8fb6
Author: Vitalie Spinu <address@hidden>
Commit: Vitalie Spinu <address@hidden>

    Readme
---
 readme.md | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/readme.md b/readme.md
index 93e0d08..50d7d09 100644
--- a/readme.md
+++ b/readme.md
@@ -25,13 +25,13 @@ You can either register each backend globally:
 
 ```lisp
 
-;; add completions of unicode symbols globally 
+;; global activation of the unicode symbol completion 
 (add-to-list 'company-backend 'company-math-symbols-unicode)
 
 
 ```
 
-or locally per each mode:
+or locally per emacs mode:
 
 
 ```lisp
@@ -39,12 +39,10 @@ or locally per each mode:
 ;; local configuration for TeX modes
 (defun my-latex-mode-setup ()
   (setq-local company-backends
-             (append '(company-math-symbols-latex
-                       company-latex-commands)
+             (append '(company-math-symbols-latex company-latex-commands)
                      company-backends)))
 
 (add-hook 'TeX-mode-hook 'my-latex-mode-setup)
-
  
 ```
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]