I am currently using Vim version 8.2 with vim-emmet version 0.86.
I am struggling to write the abbreviation for CSS as shown below:
border: 1px solid #dcd2ba;
Upon referencing the manual, I came across the instructions for css abbreviation which can be found here.
The manual mentions that bd5#0s should expand to border: 5px #000 solid. However, when I try this in my Vim editor, nothing happens. In fact, a strange expansion occurred when I tried code bd1s and it expanded into border-break: close.
Additionally, the abbreviation bd1 s expanded into border: 1px solid #000, while bd2 s strangely turned into box-shadow: inset hoff voff blur spread rgb(0, 0, 0) instead of border: 2px solid #000.
I'm unsure what configuration is incorrect for my emmet setup, and I'd appreciate guidance on how to diagnose and resolve this issue.