Tim Stack
1effd99e5c
[sql] add parse_url()/unparse_url() functions
...
Fixes #44
2022-09-18 06:51:04 -07:00
Tim Stack
b536043050
[sql/json] json_group_array() returns {} instead of []
2022-09-16 13:02:52 -07:00
Tim Stack
eb0bd4ac9a
[anon] add an anonymizer to help with support requests
...
Fixes #1055
2022-09-15 21:11:30 -07:00
Tim Stack
740b827901
[logfile] handle logs with ANSI escapes
...
This is a partial fix for handling ANSI escapes in
parts of log messages that would prevent regexes
from matching. Still more work to do.
Related to #1057
2022-09-14 21:43:36 -07:00
Tim Stack
eaa6e50a52
[log_format] perform more validations on log formats
2022-09-12 07:18:26 -07:00
Tim Stack
af5213a98a
[log_formats] change "no patterns have a capture" error to a warning
2022-09-10 15:43:47 -07:00
Tim Stack
5a63ece31d
[pcre2] migrate from pcre to pcre2
...
Fixes #974
2022-09-10 09:28:07 -07:00
Tim Stack
aee33d6929
Merge pull request #1041 from bowlofeggs/build-remote-when-needed
...
Only build ssh keys when needed
2022-09-04 14:09:00 -07:00
Tim Stack
6ca01cd934
[line_buffer] fix some long-line handling
2022-09-04 06:38:39 -07:00
Randy Barlow
b16833392b
Only build ssh keys when needed
...
I believe the test/remote folder only needs to be setup for
test/test_remote.sh. Prior to this commit, it was being built during
make, rather than just during make check. This commit adjusts things so
that the test/remote folder is only generated during make check, and
only when test/test_remote.sh is being executed.
Fixes #1040
Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
2022-09-04 00:03:33 -04:00
Tim Stack
7309352c97
[view_curses] add a unit type to line_range
...
Fixes #1033
2022-09-03 08:49:47 -07:00
Tim Stack
a813482a54
[log_formats] JSON number time to local time zone
...
Fixes #1038
2022-09-02 23:06:03 -07:00
Tim Stack
679e9f0771
[build] try to fix brew build error
2022-09-01 21:46:59 -07:00
Tim Stack
ca51854e89
[build] turn on optimizations for snap build and fix dist
2022-09-01 21:16:28 -07:00
Tim Stack
e047386441
[sql] extract() assumed too much about elements
2022-09-01 14:33:51 -07:00
Tim Stack
c9ec288853
[regexp_vtab] hex floats were being passed through to json, which does not support hex floats
...
It looks like sscanf("%f") was accepting hex-floats. So, lnav
was passing that through to the JSON, which does not like hex
floats.
FYI, @trantor, this should fix the regexp_capture_into_json()
issue of hex numbers being passed through.
2022-09-01 07:32:51 -07:00
Tim Stack
72d171ae4b
[tests] add a regexp_capture() test
2022-08-30 22:28:12 -07:00
Tim Stack
b5cb38d454
[user_notifications] treat message as markdown
2022-08-29 16:00:33 -07:00
Timothy Stack
220317eb16
[demo] build/deploy stuff for ssh-based demo
...
fix structure name clash
2022-08-28 23:07:55 -07:00
Tim Stack
87791ec94b
[markdown] add support for going to an anchor
2022-08-28 18:55:32 -07:00
Tim Stack
d01db38d51
[init] fix handling of unknown TERM
2022-08-22 13:15:31 -07:00
Tim Stack
5751fe89c4
[markdown] recognize more code fence langs
2022-08-21 22:02:46 -07:00
Tim Stack
a2c35140ba
[data_scanner] hack to recognize some windows paths
...
Fixes #1018
2022-08-20 21:23:42 -07:00
Tim Stack
53c9c5cb51
[logfile] move bookmark_metadata to logfiles
2022-08-19 20:01:25 -07:00
Tim Stack
5abd483029
[ansi_scrubber] handle unicode in overstrike code
2022-08-18 16:09:45 -07:00
Tim Stack
9c8cc04a99
[cmds] :goto was not handling timestamps with spaces
2022-08-18 13:27:49 -07:00
Tim Stack
af75f7bd80
[tests] updated expected output for readme change
2022-08-17 13:34:10 -07:00
Tim Stack
74c2237296
[loader] add some help text to the error for values without a corresponding capture
2022-08-16 22:39:24 -07:00
Tim Stack
001f26d066
[loader] make sure values defined in formats have a corresponding capture in at least one pattern
2022-08-16 21:38:17 -07:00
Tim Stack
072fad4173
[tests] coverage for json SQL funcs
2022-08-16 20:46:23 -07:00
Tim Stack
35a8e99c07
[tests] coverage for some state functions
2022-08-16 20:28:03 -07:00
Tim Stack
88d9002a5d
[search-table] add test case
2022-08-16 14:51:08 -07:00
Tim Stack
d020168860
[meta] highlight comments/tags in searches
2022-08-15 22:32:28 -07:00
Tim Stack
7ef5cf6ba3
[session] some more session docs
2022-08-13 21:42:41 -07:00
Tim Stack
0603b1e756
[session] support for :hide-file and some related fixes
2022-08-13 07:31:46 -07:00
Tim Stack
ebe2e0d8e6
[docs] add config panel screenshots
2022-08-10 10:39:25 -07:00
Tim Stack
1fd274ce24
[docs] some more updates to docs
...
Also, add support for overstruck/backspace-underscore for
doing bold/underline.
2022-08-08 23:14:02 -07:00
Tim Stack
3df07139b3
[line_buffer] fix long line issue
...
Fixes #980
2022-08-06 13:46:50 -07:00
Tim Stack
4e74491e84
[blog] post about markdown support
2022-08-06 02:11:37 -07:00
Tim Stack
deb0e21554
[tests] fix export session test
2022-08-05 22:23:19 -07:00
Tim Stack
4e0dab843a
[session] try avoid using absolute file paths in session exports
2022-08-04 09:22:09 -07:00
Tim Stack
a4fadb56f6
[build] missed new textfile
2022-08-03 14:19:54 -07:00
Tim Stack
7c3df44fc4
[pretty] handle ANSI escapes
...
Fixes #1020
2022-08-03 13:46:36 -07:00
Tim Stack
056754a926
[session] some improvements to session export
2022-08-03 10:55:18 -07:00
Tim Stack
5259da4f4f
[highlights] reprioritize highlighters to prefer formats over themes
...
Fixes #992
2022-08-03 06:48:59 -07:00
Tim Stack
010198531b
[tests] some coverage for blobs
2022-08-02 21:18:05 -07:00
Tim Stack
3cafcf3c77
[attr_line] tweak shifting of attributes
...
Fixes #1017
2022-08-02 11:25:19 -07:00
Tim Stack
1ae1600f7b
[line_buffer] cache compressed files
2022-08-01 14:56:48 -07:00
Tim Stack
c17046b2fa
[formats] fix error message if pattern does not fully match sample
2022-07-31 22:00:25 -07:00
Tim Stack
e2e491ec41
[search-table] improve preview highlighting
2022-07-31 07:44:22 -07:00