feat(just): Added autocmd for replacing make with just, if find justfile in workdir#1765
feat(just): Added autocmd for replacing make with just, if find justfile in workdir#1765TakiMoysha wants to merge 1 commit into
Conversation
Review ChecklistDoes this PR follow the [Contribution Guidelines](development guidelines)? Following is a partial checklist: Proper conventional commit scoping:
|
chore(just): refactored just_as_make
b18416e to
07ff754
Compare
📑 Description
Vim has
make+quickfix, which is very convenient. Currently,justcan only be called via:!justand doesn't pass the output to quickfix.I've added an autocmd that replaces
makecalls inmakewithjustif it finds ajustfile.just_as_make;📖 Additional Information
Maybe it's worth using
VimEnterevent instead, but I thinkBufReadPostworks better.