summaryrefslogtreecommitdiff
path: root/src/parameters_parser.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-02-11 22:23:44 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-03-02 01:08:11 +0000
commit486d1269e08552008b9eecc9841caa0d98e3d0b2 (patch)
tree2ee1eeaf49c643e4989f284fdf1cc90cd730d771 /src/parameters_parser.cc
parent945178264870aa076e3675da6d06e46935093f50 (diff)
Consistently name -foo things 'switches'
Diffstat (limited to 'src/parameters_parser.cc')
-rw-r--r--src/parameters_parser.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/parameters_parser.cc b/src/parameters_parser.cc
index b50e8414..76f92d72 100644
--- a/src/parameters_parser.cc
+++ b/src/parameters_parser.cc
@@ -3,11 +3,11 @@
namespace Kakoune
{
-String generate_flags_doc(const OptionMap& opts)
+String generate_switches_doc(const SwitchMap& switches)
{
String res;
- for (auto& opt : opts)
- res += " -" + opt.first + (opt.second.takes_arg ? " <arg>: " : ": ") + opt.second.description + "\n";
+ for (auto& sw : switches)
+ res += " -" + sw.first + (sw.second.takes_arg ? " <arg>: " : ": ") + sw.second.description + "\n";
return res;
}
@@ -23,8 +23,8 @@ ParametersParser::ParametersParser(ParameterList params,
only_pos = true;
else if (not only_pos and params[i][0] == '-')
{
- auto it = m_desc.options.find(params[i].substr(1_byte));
- if (it == m_desc.options.end())
+ auto it = m_desc.switches.find(params[i].substr(1_byte));
+ if (it == m_desc.switches.end())
throw unknown_option(params[i]);
if (it->second.takes_arg)
@@ -36,7 +36,7 @@ ParametersParser::ParametersParser(ParameterList params,
}
else
{
- if (desc.flags & ParameterDesc::Flags::OptionsOnlyAtStart)
+ if (desc.flags & ParameterDesc::Flags::SwitchesOnlyAtStart)
only_pos = true;
m_positional_indices.push_back(i);
}
@@ -48,7 +48,7 @@ ParametersParser::ParametersParser(ParameterList params,
bool ParametersParser::has_option(const String& name) const
{
- kak_assert(m_desc.options.find(name) != m_desc.options.end());
+ kak_assert(m_desc.switches.find(name) != m_desc.switches.end());
for (auto& param : m_params)
{
if (param[0] == '-' and param.substr(1_byte) == name)
@@ -63,8 +63,8 @@ bool ParametersParser::has_option(const String& name) const
const String& ParametersParser::option_value(const String& name) const
{
#ifdef KAK_DEBUG
- auto it = m_desc.options.find(name);
- kak_assert(it != m_desc.options.end());
+ auto it = m_desc.switches.find(name);
+ kak_assert(it != m_desc.switches.end());
kak_assert(it->second.takes_arg);
#endif