feat: log search functionality, closes #72
This commit is contained in:
@@ -31,6 +31,8 @@
|
||||
"use_cli": false,
|
||||
// Show the logs section - this can be changed during operation with the log_section_toggle key
|
||||
"show_logs": true,
|
||||
// Use case-sensitive matching for logs
|
||||
"log_search_case_sensitive": true,
|
||||
//////////////////
|
||||
// Custom Keymap //
|
||||
//////////////////
|
||||
@@ -67,6 +69,10 @@
|
||||
"/",
|
||||
"F1"
|
||||
],
|
||||
// Enter log search mode
|
||||
"log_search_mode": [
|
||||
"#"
|
||||
],
|
||||
// Quit at anytime
|
||||
"quit": [
|
||||
"q"
|
||||
@@ -85,7 +91,9 @@
|
||||
"end"
|
||||
],
|
||||
// Modifier to scroll by 10 lines instead of one, used in conjunction with scroll_up/scroll_down
|
||||
"scroll_many": ["control"],
|
||||
"scroll_many": [
|
||||
"control"
|
||||
],
|
||||
// Scroll up to the start of a list
|
||||
"scroll_start": [
|
||||
"home"
|
||||
@@ -285,6 +293,17 @@
|
||||
// Highlighted text color
|
||||
"highlight": "magenta"
|
||||
},
|
||||
// The log search panel
|
||||
"log_search": {
|
||||
// Background color of panel
|
||||
"background": "reset",
|
||||
// color of text
|
||||
"text": "gray",
|
||||
// text color of the buttons text
|
||||
"button_text": "black",
|
||||
// Highlighted text color
|
||||
"highlight": "magenta"
|
||||
},
|
||||
// The logs panel, will only be applied if color_logs is false
|
||||
"logs": {
|
||||
// Background color of panel
|
||||
|
||||
Reference in New Issue
Block a user