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 | 3783 |
2 | jiangly | 3710 |
3 | tourist | 3662 |
4 | Um_nik | 3526 |
5 | ko_osaga | 3500 |
6 | maroonrk | 3488 |
7 | ecnerwala | 3478 |
8 | inaFSTream | 3477 |
9 | fantasy | 3470 |
10 | QAQAutoMaton | 3428 |
# | User | Contrib. |
---|---|---|
1 | Um_nik | 185 |
2 | adamant | 177 |
2 | awoo | 177 |
4 | nor | 169 |
5 | maroonrk | 165 |
6 | -is-this-fft- | 163 |
7 | antontrygubO_o | 155 |
8 | ko_osaga | 151 |
8 | dario2994 | 151 |
10 | SecondThread | 149 |
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):