Commit Graph

1441 Commits

Author SHA1 Message Date
Timothy Stack
b53ac5e3a6 try to fix after_script 2018-11-15 09:16:23 -08:00
Timothy Stack
5c6cc5fe2a [readline] pressing escape should exit the command prompt
Fixes #316
2018-11-15 06:43:28 -08:00
Timothy Stack
31a19ac753 [vtab] fix the SQL function adapter for vector refs 2018-11-15 05:25:02 -08:00
Timothy Stack
6336fa56e9 [cmds] :write-json-to should passthru JSON columns as JSON instead of strings
Fixes #565
2018-11-14 21:46:49 -08:00
Timothy Stack
f6a84ed081 [display] fix colors on a plain xterm display 2018-11-13 21:57:47 -08:00
Timothy Stack
aa0bfd6c62 [sql] add a spooky_hash() function
Fixes #567
2018-11-13 20:55:04 -08:00
Timothy Stack
ec82ecda62 [filter] display the number of filters 2018-11-10 22:55:08 -08:00
Timothy Stack
efe6ccf0d1 [filter] change from backquote to tab for activating filter panel 2018-11-09 13:59:27 -08:00
Timothy Stack
2345a32423 [filter] add panel that shows the set of filters
Initial version, still needs some cleanup
2018-11-09 09:45:19 -08:00
Timothy Stack
80456791ac [build] missed adding header to makefile 2018-10-25 21:38:08 -07:00
Timothy Stack
b1a6d06490 [lss] refactor the force flag during indexing and some other stuff 2018-10-25 21:26:58 -07:00
Timothy Stack
d74f3a13da [lnav_commands] fix attempt to convert uninitialized max_time
Fix #556
2018-10-19 21:25:20 -07:00
Timothy Stack
a9a05af736 [logfile_sub_source] revert sorting change for now 2018-10-17 08:13:11 -07:00
Timothy Stack
14599839ed [logfile_sub_source] fix sorting 2018-10-17 08:02:05 -07:00
Timothy Stack
8b9536100e [build] fix a typo in test_sql.sh 2018-10-17 07:54:59 -07:00
Timothy Stack
84135c44e4 [build] disable simd stuff for now 2018-10-17 07:36:42 -07:00
Timothy Stack
fc8bc80f62 [build] try removing inline 2018-10-17 07:21:27 -07:00
Timothy Stack
bae4897071 [build] fix pcre utf flag usage 2018-10-17 07:13:45 -07:00
Timothy Stack
2589345e5c [perf] improve initial indexing times 2018-10-17 07:03:33 -07:00
Timothy Stack
2e10ca09d0 [line_buffer] fix crlf handling in log files 2018-10-12 07:46:18 -07:00
Timothy Stack
9fa3714c85 [build] missed cleaning test files 2018-10-12 07:23:28 -07:00
Timothy Stack
ac7ae1275a [cmds] add :redirect-to command for redirecting the output of commands in scripts
Related to #551
2018-10-12 07:12:35 -07:00
Timothy Stack
ea5ac46c0e [cmds] the output of the :pipe commands should go to the top of the output stack and not to a temp file 2018-10-11 07:09:52 -07:00
Timothy Stack
53c1f03205 update includes for command_executor.hh 2018-10-11 06:45:23 -07:00
Timothy Stack
e5c6c180eb [cmds] fix preview for :write-raw-to 2018-10-11 06:14:39 -07:00
Timothy Stack
5f5e2d5c4e [cleanup] prune some includes and some other cleaning
Defect Number:
    Reviewed By:
   Testing Done:
2018-10-11 05:50:28 -07:00
Timothy Stack
c715807657 [perf] minor improvement in indexing 2018-10-10 22:21:56 -07:00
Timothy Stack
658931a145 [cleanup] remove cdefs.h include and other stuff
Fix #486
2018-10-10 08:01:08 -07:00
Timothy Stack
70f7bcacd9 Don't update the top if the time is not different 2018-10-09 16:52:19 -07:00
Timothy Stack
9664b015c6 [textview] preserve location in view when changing filters
Defect Number:
    Reviewed By:
   Testing Done:
2018-10-08 07:43:08 -07:00
Timothy Stack
d1856b53ba [build] avoid adding -I/usr/include to CPPFLAGS
Defect Number:
    Reviewed By:
   Testing Done:
2018-10-02 23:04:14 -07:00
Timothy Stack
26ad05dd80 [build] try to remove some old defines 2018-10-02 22:52:07 -07:00
Timothy Stack
686ce639a0 [build] use cmath instead of math.h
Defect Number:
    Reviewed By:
   Testing Done:
2018-10-02 22:01:18 -07:00
Tim Stack
2e827da102
Merge pull request #545 from bennyz/fix-typo
Remove redundant the
2018-10-02 06:41:03 -07:00
Benny Zlotnik
bec91a458e Remove redundant the
Signed-off-by: Benny Zlotnik <uber442@gmail.com>
2018-10-02 16:24:02 +03:00
Timothy Stack
562362ed67 missed including this file with the last commit 2018-10-01 11:16:53 -07:00
Timothy Stack
6a3b1f2d94 Search results are not reversed for bookmarked lines
Fix #313

Sorry for the delay
2018-10-01 07:08:21 -07:00
Timothy Stack
d7699cfb96 add an ifdef for a symbol, Fix #289 2018-10-01 06:46:51 -07:00
Timothy Stack
1e6689a7ee add back source 2018-09-30 22:14:54 -07:00
Timothy Stack
7aded62db8 try to bump to xenial 2018-09-30 22:08:40 -07:00
Timothy Stack
db6c619e4e [keymap] support for /dev/clipboard in :write commands
The copy hotkey is now implemented in the keymap and the
':write-*' commands were enhanced to recognize /dev/clipboard
as a special file name for writing to the system clipboard.
2018-09-30 09:49:23 -07:00
Timothy Stack
0b822739ea [readline] wait for focus before processing input
Fix for #543

Mistakenly had the read-ready bit set for stdin before the
command to focus was processed.  The result being the
readline child would exit.
2018-09-29 22:24:55 -07:00
Timothy Stack
f65df7c762 [readline] tweak fuzzy matching threshold
Change the threshold for cutting off the remaining fuzzy matches
that was added for #541

Also, fix an error when filtering is added when viewing
the tail of the log.
2018-09-29 00:20:45 -07:00
Timothy Stack
f241704a93 [readline] do a fuzzy match if the prefix match fails to find anything
Prototype for #541
2018-09-13 14:27:49 -07:00
Timothy Stack
def35d1ae7 [release] version bump to v0.8.4
Defect Number:
    Reviewed By:
   Testing Done:
2018-08-27 07:23:13 -07:00
Timothy Stack
d09e1509dd [test] remove debugging 2018-08-27 07:19:54 -07:00
Tim Stack
90c761d654
Merge pull request #537 from tramseyer/patch-2
Added -a hint to journald usage.
2018-08-25 09:40:39 -07:00
Tristan Ramseyer
4c4f2a071d
Added -a hint to journald usage. 2018-08-25 18:38:55 +02:00
Tim Stack
8f4b5d54e8
Merge pull request #536 from tramseyer/patch-1
Updated description for usage with journald.
2018-08-25 09:20:34 -07:00
Tristan Ramseyer
714077c087
Updated description for usage with journald. 2018-08-25 17:32:34 +02:00