简体   繁体   中英

How to disable javascript code hints in Brackets editor?

I am new to JavaScript, just started learning, and using "Brackets" code editor but every time I write code it's showing hints, which I don't like, I don't want to see those hints, I want to learn by myself.

Please don't suggest any other code editors, I want use "Brackets" only

can someone help please?

截屏

You can disable the code hints by going to:

  • Choosing Debug > Open Preferences File opens the global preferences file "brackets.json"

Add these options to it:

    "showCodeHints": false, //turn off all code hints
    "codehint": {
       "JSHints": false //turn off JS Hints
    }

Read more on what are valid options:

ref: https://github.com/adobe/brackets/wiki/How-to-Use-Brackets#list-of-supported-preferences

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM