Hello so i've seen a neal wu sublime text compile all the time without stop and highlighting the errors, what plugin is it?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | jiangly | 3631 |
| 4 | Kevin114514 | 3574 |
| 5 | maroonrk | 3521 |
| 6 | strapple | 3515 |
| 7 | Radewoosh | 3461 |
| 8 | tourist | 3428 |
| 9 | turmax | 3378 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
Hello so i've seen a neal wu sublime text compile all the time without stop and highlighting the errors, what plugin is it?
| Name |
|---|



it's called a linter iirc, in this case a C++ linter
Actually guys I got it, here is the Installation: Note: I am using Ubuntu 21.10.
I believe it should work in any thing
Step 1 : Install clangd — sudo apt-get install clangd Step 2: Install LSP in Sublime Text — cmd+shift+p > install package > LSP > install it Step 3: Setup LSP settings: below are what i Use (u can see the settings in preferences > package control > LSP > Setting )
settings for LSP
{ "clients": { "clangd": { "enabled": true, "command": [ "/usr/bin/clangd", // you may use an absolute path for this clangd executable "-function-arg-placeholders=0", "-header-insertion-decorators=1", "-index", ], "scopes": ["source.c", "source.c++", "source.objc", "source.objc++"], "syntaxes": [ "Packages/C++/C.sublime-syntax", "Packages/C++/C++.sublime-syntax", "Packages/Objective-C/Objective-C.sublime-syntax", "Packages/Objective-C/Objective-C++.sublime-syntax", ], "languageId": "cpp", }, }, }
Step 4: Enable LSP Diagnostics Panel -- Tools > LSP > Toogle Diagnostics Panel.
Done. Now it will exactly what we want. Enjoy CODING :)
Meliodas- Thank you for the walkthorugh. Is there any way to change language from C++11 to C++17 in LSP settings, because in diagnostics throws warning.
You could add the flangd in the config file of clangd, located (in ubuntu) at
~/.config/clangd/config.yaml(if doesn't exist, just create it):