this post was submitted on 11 Mar 2024
1 points (100.0% liked)

Neovim

2087 readers
11 users here now

founded 1 year ago
MODERATORS
1
Help with snippets? (lemmy.sdf.org)
submitted 6 months ago* (last edited 6 months ago) by SexualPolytope@lemmy.sdf.org to c/neovim@programming.dev
 

My goal is to automatically close the environment while editing a tex file. There was an issue for vimtex asking for basically what I want to achieve. They achieve it using snippets as mentioned there.

The problem is, I have no idea how to set it up. I've never used snippets in nvim. I have vim-vsnip and cmp-vsnip installed as it was needed for another plugin to work. Is it possible to implement this using those?

It can be noted that in vimtex, an environment can be closed by typing ]] which is a mapping of vimtex-delim-close. I basically want to emulate the behavior in VS Code using LaTeX Workshop. It auto-closes the environment, adds an indented line in the middle, and moves the cursor there.

If anyone has any other ideas about doing this without snippets, that's welcome too.

top 1 comments
sorted by: hot top controversial new old
[–] Gobbel2000@feddit.de 0 points 6 months ago

Like someone noted in the vimtex issue you linked, I use UltiSnips together with snippet definitions from vim-snippets, which works pretty well with the begin snippet. vim-snippets includes a bunch more snippets too which I find quite useful, particularly for LaTeX. I don't know the vsnip plugins you mentioned but they can probably do the same.