LaTeX-auto-activating-snippets icon indicating copy to clipboard operation
LaTeX-auto-activating-snippets copied to clipboard

Mirror of https://git.tecosaur.net/tec/LaTeX-auto-activating-snippets

Results 11 LaTeX-auto-activating-snippets issues
Sort by recently updated
recently updated
newest added

laas-mode is great but the default behaviour that substitutes things like 'e is very disruptive in my experience, especially when writing in French. It'd be great if there was an...

# Expected Behaviour Type `;a_i` to get `\alpha_i`, or type `;a^i` to get `\alpha^i` # Actual Behaviour Got `\alpha _i` and `\alpha ^i`

Inspired by #23, we should disable subscripts within `siunitx` macros such as `\qty`, `\num`, and so on. It's currently painful to write exponents for numbers in these macros as they...

Hi, very interesting snippets approach... is there some thinking about handling siunitx with the convenient approach as well? It would be great if the units get converted like `m` gets...

Hi! As a naïve way to make laas to work with `markdown-mode` I modify the `laas-mathp` function (https://github.com/tecosaur/LaTeX-auto-activating-snippets/blob/master/laas.el#L60) to use `laas-org-mathp` to know if we are in a latex block...

Would it be possible to have turn off the underscoring when typing numbers in a chemformula environment. E.g. one could have something like this: Or maybe it is possible to...

# Expected Behavior - `a^123` -> `a^{123` - `a^123 ` -> `a^{123} ` - `a^-33x ` -> `a^{-33x} ` Should the power include non-numeric characters (ex. variable names, `;`)? That...

It would be useful if the automatic underscores also worked for Greek letters, such that when there is a `\alpha` and I type `1` not `\alpha1` but `\alpha_1` appears. (This...

Hi! In math, you know the importance of `\mathbb` to write special sets (R, N, Q, Z, etc.). I tried to add this to my local configuration, following your code...

I was getting duplicated parens when inserting fractions and tracked down the issue to smartparens-mode. It seems like `laas` tries to handle this through the function `laas--shut-up-smartparens`, so I was...