ate is a terminal pager that parses [terminal hyperlinks] and lets you search, move between, and open them. It navigates in addition to paginating. While it pages through text streams like existing terminal pagers, [less] has far more features for that use case.

Watch the video below for high-level usage and check out [why ate] for more on the motivation for the tool and how to use it.

https://user-images.githubusercontent.com/12270/194925821-a69e749d-798f-4702-b064-1a2978aeb8f3.mp4

Unmute the video to hear narration or read it below:

Installation

[Install Rust], clone this repo, and run cargo install in your clone. Alternatively, if you're using the [Nix package manager], depend on the flake.nix in this repo.

You may also want to install something to [get links] if you don't have a program you want to use with ate.

Usage

Send text to ate's standard input, like via this pipe: hyperer-rg --pretty <my_search> | ate

Or like this input redirection:

ate < my_linkful_output

In either case, ate will show the first screenful of text and parse any links in it.

Key Bindings

Environment Variables

All of ate's configuration is done through environment variables:

ATE_OPENER

Program to invoke to open a link e.g. when Enter is pressed. The selected link is passed to it as the first argument. The link should be of the form file://hostname/path#line number according to the terminal hyperlinks doc. There's no guarantee that a program isn't emitting malformed links, but ate openers assume that form for now.

ate expects to invoke this process and for it to open the file to edit in another window. For example, you can use Vim's remote command or [emacsclient] to do that.

[opener_examples] has scripts that can be used as openers. To use one, download it, modify it if your system differs, and export ATE_OPENER as the full path to the script.

For example, if you have this repo cloned at ~/dev/ate and use NeoVim, you run a different command depending on your shell: * For zsh or bash: export ATE_OPENER=~/dev/ate/opener_examples/nvim_opener.bash * For fish: set -xU ATE_OPENER ~/dev/ate/opener_examples/nvim_opener.bash

For zsh or bash, you'll also want to add it to your shell startup files to get it to show up in new shells.

ATE_OPEN_FIRST

If defined, ate will open the first link it finds on starting. I use this Bash script to run cargo and compile Rust:

```bash

Use hyperer-cargo to link to Rust files in compilation failures, test failures, and backtraces

hyperer-cargo --color=always $* |\

Print the cargo output to the terminal and to a temp file

tee /tmp/hyperlinked_cargo.out

If the cargo command failed, open the output in ate.

If it didn't fail, we won't have anything interesting to navigate

if [[ ${PIPESTATUS[0]} -ne 0 ]] ; then # If it's been under 5 seconds since the script started, set ATEOPENFIRST # This means if a compile or test was quick, we open the failure using ATEOPENER ASAP # If cargo took longer, we don't immediately open a link in case we've started doing something in our editor. if [[ $SECONDS -lt 5 ]] ; then export ATEOPENFIRST= fi ate < /tmp/hyperlinkedcargo.out fi ```

Getting Links

ate's most useful on text containing hyperlinks. Terminal hyperlinks are a relatively new feature, so few programs support them out of the box. ls, gcc, systemd, and [delta] are some that do.

Until hyperlink support shows up in more programs, we can wrap existing programs, detect things that could be linked in their output, and emit terminal links around that text.

[hyperer] does that for [ripgrep] and [cargo]. I highly recommend installing it and using ripgrep with it to get a sense of what ate does. It can also serve as a base for adding links to other commands.

What's Missing

ate is very young and is missing obvious features. I plan to add at least these: * Searching for text. It only searches links currently. * Streaming input. It currently reads all of standard input on startup.

It might also make sense to add these features: * Taking file arguments instead of only standard input. * Tailing files.

It's possible that it'll be possible to handle these cases with other utilities. If it isn't, I'll add them to ate, too.