style tweak
This commit is contained in:
parent
459cb212e5
commit
93ecc3efd6
|
@ -147,8 +147,10 @@ void register_env_vars()
|
||||||
void register_registers()
|
void register_registers()
|
||||||
{
|
{
|
||||||
using StringList = std::vector<String>;
|
using StringList = std::vector<String>;
|
||||||
struct DynRegDesc { char name; StringList (*func)(const Context&); };
|
static const struct {
|
||||||
static const DynRegDesc dyn_regs[] = {
|
char name;
|
||||||
|
StringList (*func)(const Context&);
|
||||||
|
} dyn_regs[] = {
|
||||||
{ '%', [](const Context& context) { return StringList{{context.buffer().display_name()}}; } },
|
{ '%', [](const Context& context) { return StringList{{context.buffer().display_name()}}; } },
|
||||||
{ '.', [](const Context& context) { return context.selections_content(); } },
|
{ '.', [](const Context& context) { return context.selections_content(); } },
|
||||||
{ '#', [](const Context& context) { return StringList{{to_string((int)context.selections().size())}}; } },
|
{ '#', [](const Context& context) { return StringList{{to_string((int)context.selections().size())}}; } },
|
||||||
|
|
Loading…
Reference in New Issue
Block a user