We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something along the lines of
#ifndef something #define something value #endif
…but less verbose. Maybe #noredef (thinking of noremap in Vim.)
#noredef
noremap
The idea being that plugins or modules can define variables with default values, and you could override them before including the file, so:
// In some_plugin.css #noredef $some-plugin-color #ddd strong { color: $some-plugin-color; } // In main.css #define $some-plugin-color #ccc #include "some_plugin.css"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Something along the lines of
…but less verbose. Maybe
#noredef
(thinking ofnoremap
in Vim.)The idea being that plugins or modules can define variables with default values, and you could override them before including the file, so:
The text was updated successfully, but these errors were encountered: