mirror of
https://github.com/tstack/lnav
synced 2024-11-17 15:29:40 +00:00
Merge pull request #472 from sureshsundriyal/master
[command] Add a ':quit' command.
This commit is contained in:
commit
78d4ce3b3a
@ -135,6 +135,7 @@ Miscellaneous
|
||||
environment variable substitution. The argument to *eval* must start with a
|
||||
colon, semi-colon, or pipe character to signify whether the argument is a
|
||||
command, SQL query, or a script to be executed, respectively.
|
||||
* quit - Quit lnav. Alternatively, ':q' can be used as an alias for 'quit'.
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
@ -672,6 +672,7 @@ COMMANDS
|
||||
save-config Save the current configuration state to:
|
||||
\~/.lnav/config.json
|
||||
|
||||
quit Quit lnav.
|
||||
|
||||
SQL QUERIES (experimental)
|
||||
===========
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <fstream>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <pcrecpp.h>
|
||||
|
||||
@ -3188,6 +3189,17 @@ static string com_spectrogram(exec_context &ec, string cmdline, vector<string> &
|
||||
return retval;
|
||||
}
|
||||
|
||||
static string com_quit(exec_context &ec, string cmdline, vector<string> &args)
|
||||
{
|
||||
if (args.empty()) {
|
||||
|
||||
}
|
||||
else if (!ec.ec_dry_run) {
|
||||
lnav_data.ld_looping = false;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
readline_context::command_t STD_COMMANDS[] = {
|
||||
{
|
||||
"adjust-log-time",
|
||||
@ -3714,16 +3726,35 @@ readline_context::command_t STD_COMMANDS[] = {
|
||||
.with_parameter(help_text("field-name", "The name of the numeric field to visualize."))
|
||||
.with_example({"sc_bytes"})
|
||||
},
|
||||
{
|
||||
"quit",
|
||||
com_quit,
|
||||
|
||||
help_text(":quit")
|
||||
.with_summary("Quit lnav")
|
||||
},
|
||||
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
unordered_map<char const *, vector<char const *>> aliases = {
|
||||
{ "quit", { "q" } },
|
||||
};
|
||||
|
||||
void init_lnav_commands(readline_context::command_map_t &cmd_map)
|
||||
{
|
||||
for (int lpc = 0; STD_COMMANDS[lpc].c_name != NULL; lpc++) {
|
||||
readline_context::command_t &cmd = STD_COMMANDS[lpc];
|
||||
|
||||
cmd_map[cmd.c_name] = cmd;
|
||||
|
||||
auto itr = aliases.find(cmd.c_name);
|
||||
if (itr != aliases.end()) {
|
||||
for (char const * alias: itr->second) {
|
||||
cmd_map[alias] = cmd;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (getenv("LNAV_SRC") != NULL) {
|
||||
|
@ -672,6 +672,7 @@ COMMANDS
|
||||
save-config Save the current configuration state to:
|
||||
~/.lnav/config.json
|
||||
|
||||
quit Quit lnav.
|
||||
|
||||
SQL QUERIES (experimental)
|
||||
===========
|
||||
|
Loading…
Reference in New Issue
Block a user