summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-03-14 17:30:34 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-03-14 17:30:44 +0000
commit65fd0df0410760ff2a3c3d965b136ffa776c464d (patch)
tree68ad4492d5cf50fd15a78a98ecebad2beaff7f1d /src/main.cc
parent8a211fc87a6f842376fcb1235e5a143f36947f56 (diff)
More code style cleanup
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cc b/src/main.cc
index bb17dc83..77426268 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -517,13 +517,13 @@ int main(int argc, char* argv[])
params.push_back(argv[i]);
const ParameterDesc param_desc{
- SwitchMap{ { "c", { true, "connect to given session" } },
- { "e", { true, "execute argument on initialisation" } },
+ SwitchMap{ { "c", { true, "connect to given session" } },
+ { "e", { true, "execute argument on initialisation" } },
{ "n", { false, "do not source kakrc files on startup" } },
- { "s", { true, "set session name" } },
+ { "s", { true, "set session name" } },
{ "d", { false, "run as a headless session (requires -s)" } },
- { "p", { true, "just send stdin as commands to the given session" } },
- { "f", { true, "act as a filter, executing given keys on given files" } },
+ { "p", { true, "just send stdin as commands to the given session" } },
+ { "f", { true, "act as a filter, executing given keys on given files" } },
{ "q", { false, "in filter mode, be quiet about errors applying keys" } } }
};
try