Commit Graph

356 Commits

Author SHA1 Message Date
Ethan P
c070ae7f3a
Update 'best' to latest master 2020-02-19 21:01:59 -08:00
Ethan P
67d71fdb1f
Fix test.sh auto submodule initialization 2020-02-19 20:52:34 -08:00
Ethan P
88e71bbb38
Update to use 'best' for testing 2020-02-19 20:49:20 -08:00
Ethan P
5cbbbb6ebc
batman: Add support for MANPAGER environment variable 2020-02-15 15:10:18 -08:00
Ethan P
4b17464c6e
Fix invalid markdown in README and add IDEA files to gitignore 2020-02-15 15:04:30 -08:00
Ethan P
765658c23d
Fix regression caused by attempted fix of #6 2020-01-21 14:10:14 -08:00
Ethan P
dcb1a7e54c
Fix CI build by adding edge/community repository 2020-01-21 10:11:33 -08:00
Ethan P
e0b9819859
Add relative symlink test 2020-01-21 09:58:26 -08:00
Ethan P
c74d47ecd0
Attempt fix for #6 2020-01-21 09:57:55 -08:00
Ethan P
441eed7c52
Rename symlink tests 2020-01-21 09:41:24 -08:00
Ethan P
4c1ebac719
Fix CI build warning by installing shfmt 2020-01-18 15:38:39 -08:00
Ethan P
963762f4b6
Fix CI by using GNU coreutils 2020-01-18 15:37:44 -08:00
Ethan P
5c9920827f
Add test for running from a symlink 2020-01-18 15:31:25 -08:00
Ethan P
ab38bb254c
Fix incorrect width being passed to 'bat' in batgrep with pager 2020-01-17 20:52:58 -08:00
Ethan P
72b09b4416
Fix pager_name to print name of unknown pagers 2020-01-17 20:50:26 -08:00
Ethan P
49dfb332c1
Merge pull request #9 from HarrisonMc555/search-pattern
Add --search-pattern option to tell less to search for pattern
2020-01-17 20:46:27 -08:00
Ethan P
d7949c4bf3
Change --less-search-pattern to --search-pattern in docs 2020-01-17 20:44:58 -08:00
Ethan P
c78bb6d592
Fix boolean conditional branching 2020-01-17 20:42:18 -08:00
Ethan P
3e9969de76
Add message for --search-pattern and no pager
I should probably find a more elegant way to split
an error message across multiple lines in the future.
2020-01-17 20:39:32 -08:00
Ethan P
63a9929592
Merge branch 'master' into search-pattern 2020-01-17 20:30:43 -08:00
Harrison McCullough
0cda564175 Make changes according to feedback
Most of these are simple changes. I added an `is_pager_less` and a `get_pager`
function to `pager.sh`. In order for this function to be available for use
inside `pager.sh`, I had to define the functions before setting defaults.

The `is_pager_less` function is then used for the `--search-pattern` to see if
the `$SCRIPT_PAGER` supports the `--search-pattern` flag. Right now, the only
supported pager is `less`.
2020-01-17 23:09:59 -05:00
Ethan P
0fa396fbcb
Add pager_name function to pager.sh 2020-01-17 17:06:00 -08:00
Ethan P
c80d107d1c
Disabled pager test due to inconsistencies 2020-01-17 16:56:18 -08:00
Harrison McCullough
67f1ff9c0e Add support for fixed strings and --less-search-pattern
Previously, if you tried to use the `-F`/`--fixed strings` option for ripgrep in
combination with the `--less-search-pattern` option, `less` would either a)
match a different pattern than intended, since it would be interpreted as a
regular expression, or b) refuse to start if it detected an invalid pattern.

This change keeps track of whether or not the `--fixed-strings` option was
passed in. If both it and the `--less-search-pattern` was passed in, a `^R`
(Control-R) control character is prepended to the search pattern. This instructs
less to *not* treat the pattern as a regular expression.
2020-01-17 11:05:06 -05:00
Harrison McCullough
cf7b33443a Add --less-search-pattern option to tell less to search for pattern
The `less` pager can search for a pattern. In addition, you can instruct it to
search for a given pattern on startup by passing in the `-p` flag followed by
the pattern to search for. Since the `batgrep` command is searching for a
pattern and invoking the pager, it has the opportunity to take advantage of this
functionality.

This patch adds a `-p` flag to `batgrep` which, in turn, passes `-p $PATTERN` to
the pager invoked. This may be specific to `less`, which is
unfortunate. However, it doesn't seem like there would be a convenient way to
make this more general. In addition, most pagers forward the actual paging to
`less` anyways.

To clarify that the behavior is specific to `less`, the long name is
`--less-search-pattern`.
2020-01-17 10:25:38 -05:00
Ethan P
eca97339e0
Fix inconsistencies in tests between tty and script 2019-12-25 00:17:01 -08:00
Ethan P
98e2077fe2
Fix lib.pager test breaking on CI 2019-12-23 18:06:27 -08:00
Ethan P
b98e241fca
Update CI environment to have script command 2019-12-23 17:49:34 -08:00
Ethan P
08acea3bf4
Add test for pager lib 2019-12-23 17:45:58 -08:00
Ethan P
285ac66303
Fix missing pager arguments in batman.sh 2019-12-23 17:08:32 -08:00
Ethan P
18bf6e2c5c
Add argument forwarding from batgrep to ripgrep 2019-12-23 16:58:58 -08:00
Ethan P
f17681b8b8
Update batgrep documentation 2019-12-23 16:50:56 -08:00
Ethan P
a3483a658a
Add support for '--smart-case' to batgrep 2019-12-23 16:49:31 -08:00
Ethan P
e967497387
Update batman.sh to use the pager.sh library script 2019-12-23 16:39:33 -08:00
Ethan P
7cabaa620d
Fix batman.sh incorrectly disabling the pager 2019-12-23 16:20:28 -08:00
Ethan P
8339354189
Update build.sh to fix output messages 2019-10-27 00:14:55 -07:00
Ethan P
f740dc86d2
Update docs for batwatch 2019-10-25 13:54:45 -07:00
Ethan P
767cfb59b0
Update batwatch to use print_error function 2019-10-25 13:52:44 -07:00
Ethan P
80a07980aa
Add "poll" watcher to batwatch 2019-10-25 13:50:10 -07:00
Ethan P
a0fcb97ff9
Disable batman tests because man will not read local files 2019-10-22 16:06:44 -07:00
Ethan P
14b69a893d
Add new tests for batman 2019-10-22 15:42:34 -07:00
Ethan P
df14cfc8b1
Add way to see test snapshot output 2019-10-22 15:42:06 -07:00
Ethan P
d9e34e2d5f
Add color option to batman 2019-10-22 15:35:10 -07:00
Ethan P
fa8a3bb850
Improve tests 2019-10-22 15:21:12 -07:00
Ethan P
763d34d9c9
Fix LIB variable 2019-10-22 15:04:34 -07:00
Ethan P
c2b4d2fe9a
Add CI test to see if symlinks work 2019-10-22 15:00:35 -07:00
Ethan P
0aeabe9bdf
Fix broken build when missing shfmt 2019-10-22 10:51:56 -07:00
Ethan P
358632ed9d
Add experimental compression 2019-10-11 13:03:47 -07:00
Ethan P
2a8de58809
Add unimplemented extra minification 2019-10-11 12:30:06 -07:00
Ethan P
93843cd067
Fix missing file name in batwatch 2019-10-11 12:18:43 -07:00