vimrc

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules

commit fc613db2b4da4fa5c0cf6510bad288db5276ff39
parent 3b0ca829237ee98f6142386b16199c9cde936683
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date:   Wed,  6 Apr 2022 08:06:09 -0500

fix: updated emmet configuration

Diffstat:
Mplugin/pablo/emmet.vim | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/plugin/pablo/emmet.vim b/plugin/pablo/emmet.vim @@ -17,6 +17,20 @@ let g:user_emmet_settings = { \ ."</head>\n" \ ."<body>\n\t${child}|\n</body>\n" \ ."</html>", +\ 'table': "<table>\n" +\ ."\t<thead>\n" +\ ."\t\t<tr>\n" +\ ."\t\t\t<th scope=\"col\"></th>\n" +\ ."\t\t\t<th scope=\"col\"></th>\n" +\ ."\t\t</tr>\n" +\ ."\t</thead>\n" +\ ."\t<tbody>\n" +\ ."\t\t<tr>\n" +\ ."\t\t\t<th scope=\"row\"></th>\n" +\ ."\t\t\t<td></td>\n" +\ ."\t\t</tr>\n" +\ ."\t</tbody>\n" +\ ."</table>\n", \ }, \ }, \}