style tweak

This commit is contained in:
Maxime Coste 2014-03-22 21:00:24 +00:00
parent 459cb212e5
commit 93ecc3efd6

View File

@ -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())}}; } },