This is very minor issue with the API.
For constants I use constexpr over #define wherever possible. I want to have the set of keywords used by my grammar defined via constexpr std::string_view and use them elsewhere in my code. Unfortunately the LEXY_KEYWORD macro relies on values passed to it to be literals, so I need to #define them.
Not a pressing issue, but a nice API change if it is simple enough to do.