Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. (map! :after tex
  2. :map TeX-mode-map
  3. """ nil)
  4.  
  5. ;; this is equivalent to
  6. (with-eval-after-load 'tex
  7. (define-key TeX-mode-map """ nil))
  8.  
  9. (after! smartparens-latex
  10. (sp-local-pair modes "``" "''" :actions :rem))
  11.  
  12. ;; This is equivalent to
  13. (with-eval-after-load 'smartparens-latex
  14. (sp-local-pair modes "``" "''" :actions :rem))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement