ItsCubeTime

Results 63 comments of ItsCubeTime

Thanks a lot :) Im actually finding https://github.com/ocornut/imgui/blob/v1.82/imgui_demo.cpp really useful as well as https://www.dearimgui.org/binaries/imgui-demo-binaries-20200918.zip . Seems I might be able to work out a thing or 2 myself For now...

How do these guys work? ![image](https://user-images.githubusercontent.com/20190653/158069011-39cb2660-5746-4c56-a356-9f6ef2839c82.png) Cant really figure out how to set some variables Did an attempt at creating my own style: ```py style: imgui.GuiStyle = imgui.get_style() style.colors[imgui.COLOR_TITLE_BACKGROUND] =...

> ```style = imgui.get_style() > style.colors[imgui.COLOR_WINDOW_BACKGROUND] = (1, .2, .3, 1) # r,g,b,a > style.colors[imgui.COLOR_TITLE_BACKGROUND] = style.colors[imgui.COLOR_BORDER] > style.window_padding = (30,40) > # you can refere to 'class GuiStyle(object)' in...

> @ItsCubeTime you said it doesn't work using an access token - which scopes did you assign and which version are you using? > > For me it works with...

Im also in favour of this, something that showcases all the not-so-obvious features and config options of clangd and how it can be used nicely along with other LLVM (and...

> I feel this is something that could be controlled via Config in a similar way to `Diagnostics->Suppress` > > ```yaml > Diagnostics: > AGoodNameForAnOptionToLowerDiagnosticsToHintLevel: > - Wunused-parameter # clang...

> Almost the whole challenge here is somewhere defining a good mapping from diagnostic kinds to severity levels in a way that is reasonable to maintain. (There are hundreds of...

> > As listed on https://clang.llvm.org/extra/clang-tidy/ all clang tidy checks are categorised quite well out-of-the-box. > > They are (mostly) categorized by the domain of code they apply to, not...

Somebody over in the LLVM Discord suggested: ```{ "clangd.clang-tidy.diagnosticSeverity": { "bugprone*": "WARN", "clang-analyze*": "WARN", "concurrency*": "WARN", "cppcoreguidelines*": false, "modernize*": "INFO", "performance*": "WARN", "portability*": "INFO", "readability*": "INFO" } } ``` As...

Alternatively if it would be too difficult implementing @njames93 suggestion I would still appreciate some simple settings like: ``` "clangd.diagnosticChannels.clang-tidy": "Info", "clangd.diagnosticChannels.clang": "Warning", ``` or ``` "clangd.diagnosticChannels.clang-tidy.portability": "Info", "clangd.diagnosticChannels.clang-tidy.modernize": "Info",...