Installation
Requirements
Emacs 25.1 or later
Projectile (recommended for project-specific configurations)
Package Manager Installation
Using straight.el:
(straight-use-package
'(test-at-point :type git :host github :repo "C-Hipple/test-at-point"))
Using package.el:
(package-install 'test-at-point)
Manual Installation
Clone the repository:
git clone https://github.com/C-Hipple/test-at-point.git
Add the following to your Emacs configuration:
(add-to-list 'load-path "/path/to/test-at-point")
(require 'test-at-point)
Configuration
Add the following to your Emacs configuration to enable automatic buffer saving before test execution:
(setq test-at-point-pre-save t)
For project-specific test command overrides, see the Configuration section.