Summary
In this episode, Jason demonstrates his customized Adafruit MacroPad configured specifically for C++ programming. He shows how he mapped frequently used C++ keywords to dedicated keys, including const-related keywords (const, constexpr, consteval, constinit) on the left column, attributes (nodiscard, maybe_unused, noexcept, static) on the right, and auto in the middle. He also created macro combinations like 'const auto' and even function declaration templates like 'nodiscard constexpr auto func noexcept' to streamline his coding workflow.
Related C++ Standard Sections
This episode covers topics found in these sections of the C++ standard:
-
[diff.cpp17.lex]46% match