Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

589
Vistas
How to edit Visual Studio Code auto-complete in JavaScript?

I was coding on JavaScript when my instructor, Andrew J. Mead (I actually learn JS from Udemy) were telling about try and catch. I type slowly so I often use auto-complete given by VS Code. Anyway, I wrote try and in auto-complete it gave me trycatch. I clicked on it and it gave me this

try {

} catch (error) {

}

I want the error to be e like catch(e), not catch(error). Is there any way that I can edit VS Code's auto-complete?

Screenshots given

  1. trycatch

trycatch

  1. auto-complete result

auto-complete result

  1. what I want

what I want

Thanks recently for the support

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can create custom snippet for VS Code
For do this, you need:

  • Open snippet editor for js (open Command Palette (Ctrl-Shift-P) and print "Snippet", and then select "Configure user snippets", select "JavaScript")
  • In the end of json paste:

{
  ...
  "My Try-Catch block": {
    "prefix": "trycatch",
    "body": [
      "try {",
      "\t$0",
      "} catch (e) {",
      "\t",
      "}",
    ],
    "description": "Paste try-catch with e"
  }
}

Your snippet will be up than standard in autocomplete


Or you can edit default snippets located at:

%localappdata%\Programs\Microsoft VS Code\resources\app\extensions\javascript\snippets

In javascript.code-snippets file, but custom snippets is better way in any cases

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda