about: Update Project Gemini website
Embed default configuration files
Makefile: Unset default suffixes
Makefile: Use phony target
Use a phony target to build the binary, which allows us to drop the
configure script.
Remove version information
Makefile: make more POSIX-compliant
A suffix in .SUFFIXES cannot contain more than one period itself, so the
rule for the manpage must be written explicitly rather than with
inference rules.
Makefile: make POSIX-compliant
The Makefile was marked as POSIX-compliant (first target is .POSIX), but made
use of a number of extensions, such as the GNU extensions $(shell ...) and ifeq,
and the widely-used, but not POSIX, += ?= != := etc.
Some of these other types of macro definitions _will_ be part of the next
version of POSIX, but they are not currently. For this Makefile, ?= and
:= were not required, and != is replaced by running the commands in a
configure script.
The RM macro was not defined, and it is not one of the predefined MACROS
required by POSIX.
The third version of the patch uses a POSIX sh configure script which
must be run before `make`. The script outputs local details into the file
config.mk, and now when a new version of astronaut is released, the RELEASE
variable in `configure` should be updated.
config.mk is included in the Makefile at a position such that if a specific
prefix was given to the configure script, then BINDIR, SHAREDIR, and MANDIR
are set correctly. However, a user may still write `make PREFIX=/my/prefix`
as before, because macros set on the command line take the highest precedence,
or now they can also write `./configure --prefix=/my/prefix`, then `make`.
A 4th version (hopefully the last!) to fix a typo in the printf statement for
PREFIX in configure. Now the configure script passes shellcheck.
config/astronaut.conf: Remove default jump binding
This conflicts with the "tab prev" binding.
command: Move find prev/next to separate commands
browser: Remove save mode
command: Cleanup after find command preview
command: Remove 'Already at...' messages for back/forward
command: Allow selecting tabs by number
browser: Fix follow mode freeze on enter
astronaut would freeze indefinitely when the user would press Enter in
hint/follow mode.