edit-without-waiting 0.2.0

Open a file in the default text editor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: build
build:
	cargo build

.PHONY: lint
lint:
	cargo clippy -- --deny warnings
	cargo fmt --check

.PHONY: format
format:
	cargo clippy --fix --allow-no-vcs
	cargo fmt

.PHONY: publish
publish:
	cargo publish