added tab jumping for qol

This commit is contained in:
Phani Pavan K
2025-12-17 11:33:05 +05:30
parent 616a1ff9f6
commit ad747a44b7

View File

@@ -1,7 +1,7 @@
{ {
"Figure": { "Figure": {
"prefix": "fig", "prefix": "fig",
"body":"\\begin{figure}[htp!]\n \\centering\n \\includegraphics[width=1\\linewidth]{${1:fig_path}}\n \\caption{${2:caption}}\n \\label{fig:${3:label}}\n\\end{figure}", "body":"\\begin{figure}[htp!]\n \\centering\n \\includegraphics[width=1\\linewidth]{${1:fig_path}}\n \\caption{${2:caption}}\n \\label{fig:${3:label}}\n\\end{figure}\n${4:end}",
"description": "Inserts a figure", "description": "Inserts a figure",
}, },
@@ -42,12 +42,12 @@
}, },
"Citation": { "Citation": {
"prefix": "cit", "prefix": "cit",
"body": "~\\cite{${1:citation}}", "body": "${2:delSpace}~\\cite{${1:citation}} ${3:continue}",
"description": "Adds the Cite command" "description": "Adds the Cite command"
}, },
"Reference": { "Reference": {
"prefix": "ref", "prefix": "ref",
"body": "~\\ref{${1:citation}}", "body": "${2:delSpace}~\\ref{${1:citation}} ${3:continue}",
"description": "Adds the Ref command" "description": "Adds the Ref command"
}, },
} }