Update version to 1.1

This commit is contained in:
Yoav Marco 2022-03-01 18:29:21 +02:00
parent 97eeca3418
commit b372f9a44b
3 changed files with 10 additions and 7 deletions

View File

@ -6,6 +6,7 @@
;; Maintainer: Liam Hupfer <liam@hpfr.net>
;; Created: February 18, 2022
;; Modified: February 18, 2022
;; Version: 1.1
;; Keywords: convenience extensions tex
;; Homepage: https://github.com/tecosaur/LaTeX-auto-activating-snippets
;; Package-Requires: ((emacs "25.1") (math-symbol-lists "1.3") (laas "1.0") (aas "1.1")

12
laas.el
View File

@ -5,11 +5,11 @@
;; Authors: Yoav Marco <https://github.com/yoavm448> TEC <https://github.com/tecosaur>
;; Maintainer: Yoav Marco <yoavm448@gmail.com>
;; Created: September 22, 2020
;; Modified: April 17, 2021
;; Version: 1.0
;; Modified: February 20, 2022
;; Version: 1.1
;; Keywords: tools, tex
;; Homepage: https://github.com/tecosaur/LaTeX-auto-activating-snippets
;; Package-Requires: ((emacs "26.3") (auctex "11.88") (aas "0.2") (yasnippet "0.14"))
;; Package-Requires: ((emacs "26.3") (auctex "11.88") (aas "1.1") (yasnippet "0.14"))
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
;; This file is not part of GNU Emacs.
@ -27,7 +27,7 @@
(require 'yasnippet)
(defgroup laas nil
"Snippet expansions mid-typing."
"LaTeX snippets that expand mid-typing."
:prefix "laas-"
:group 'aas)
@ -391,7 +391,8 @@ it is restored only once."
:expansion-desc "See the docs of `laas-frac-snippet'"
"/" laas-smart-fraction)
"Frac snippet.
Expand to a template frac after //, or wrap the object before point if it isn't /.
Expand to a template frac after //, or wrap the object before point if it
isn't /.
ab/ => \\frac{ab}{}
// => \\frac{}{}")
@ -488,6 +489,7 @@ ab/ => \\frac{ab}{}
:group 'laas)
(declare-function laas-unicode-rewrite "laas-unicode")
;;;###autoload
(define-minor-mode laas-mode
"Minor mode for enabling a ton of auto-activating LaTeX snippets."

View File

@ -19,7 +19,7 @@ So users can easily undo expansions. Maybe even bind DEL in a transient map
after expansions to undo expansions.
Look at ~buffer-undo-list~ and how smartparens does it.
** STRT Org table <-> elisp code pipeline
** DONE Org table <-> elisp code pipeline
The table -> code is preferable I think. Currently we have code -> table but
we'd need to separate into separate vars holding snippet list source in order to
format it to separate tables.
@ -35,5 +35,5 @@ Sometimes ~texmathp~ isn't enough. Too many words contain the letters "to" to ha
it expand to ~\to~ unconditionally in maths.
** Snippets for envs?
I'm not sure how much better we can do in this case compared to just yasnippet.
** Separating the engine from snippets
** DONE Separating the engine from snippets
The Yasnippet route