Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

596
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!