1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-11 13:05:51 +03:00

[string_fragment] oopserator<

This commit is contained in:
Tim Stack 2023-07-31 06:21:46 -07:00
parent 7dfecc556f
commit f2ec975b1c
2 changed files with 16 additions and 14 deletions

View File

@ -204,8 +204,10 @@ struct string_fragment {
int operator<(const string_fragment& rhs) const
{
return strncmp(
this->data(), rhs.data(), std::min(this->length(), rhs.length()));
return strncmp(this->data(),
rhs.data(),
std::min(this->length(), rhs.length()))
< 0;
}
bool iequal(const string_fragment& sf) const

View File

@ -55,18 +55,6 @@
✘ error: invalid JSON
reason: parse error: premature EOF
 --> {test_dir}/bad-config2/formats/invalid-config/config.truncated.json:3
✘ error: invalid value for property “/ui/theme-defs/invalid-theme/styles/text/color”
reason: invalid color -- “InvalidColor”
 |  reason: Unknown color: 'InvalidColor'. See https://jonasjacek.github.io/colors/ for a list of supported color names
 --> {test_dir}/bad-config2/configs/invalid-theme/config.json:8
 = help: Property Synopsis
/ui/theme-defs/invalid-theme/styles/text/color #hex|color_name
Description
The foreground color value for this style. The value can be the name of an xterm color, the hexadecimal value, or a theme variable reference.
Examples
#fff
Green
$black
✘ error: missing value for property “/log/annotations/org.lnav.test.no-condition/condition”
reason: SQL expression is invalid
 |  reason: incomplete input
@ -82,3 +70,15 @@
/log/annotations/org.lnav.test.no-handler/handler <script>
Description
The script to execute to generate the annotation content. A JSON object with the log message content will be sent to the script on the standard input
✘ error: invalid value for property “/ui/theme-defs/invalid-theme/styles/text/color”
reason: invalid color -- “InvalidColor”
 |  reason: Unknown color: 'InvalidColor'. See https://jonasjacek.github.io/colors/ for a list of supported color names
 --> {test_dir}/bad-config2/configs/invalid-theme/config.json:8
 = help: Property Synopsis
/ui/theme-defs/invalid-theme/styles/text/color #hex|color_name
Description
The foreground color value for this style. The value can be the name of an xterm color, the hexadecimal value, or a theme variable reference.
Examples
#fff
Green
$black