Skip to content

Commit

Permalink
Version 0.13.0
Browse files Browse the repository at this point in the history
Major changes:
- Accept - as stdin in any argument position

Breaking changes:
- Change order of nvimpager's and user supplied options

Changes:
- Deactivate some tests for neovim v0.10
- Improve documentation in lua code, make it ldoc compatible
- Add darwin packages to flake
- Use neovim overlay flake instead of neovim flake for nightly neovim
- Add tests with nvim's internal assert functions
- Fix detection of empty buffers (neovim/neovim#25369)
- Refactor process detection (neovim/neovim#23122)
  • Loading branch information
lucc committed May 20, 2024
1 parent 738a81e commit da3bbf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ uninstall:
$(PREFIX)/share/man/man1/nvimpager.1 \
$(PREFIX)/share/zsh/site-functions/_nvimpager

nvimpager.1: SOURCE_DATE_EPOCH = $(shell git log -1 --no-show-signature --pretty="%ct" 2>/dev/null || echo 1683697785)
nvimpager.1: SOURCE_DATE_EPOCH = $(shell git log -1 --no-show-signature --pretty="%ct" 2>/dev/null || echo 1716209952)
nvimpager.1: nvimpager.md
sed '1s/$$/ "nvimpager $(VERSION)"/' $< | scdoc > $@

Expand Down
2 changes: 1 addition & 1 deletion nvimpager
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ while getopts achpv flag; do
h) usage; description; exit;;
p) mode=pager;;
v)
version=$(git -C "$RUNTIME" describe 2>/dev/null) || version=0.12.0
version=$(git -C "$RUNTIME" describe 2>/dev/null) || version=0.13.0
echo "$NVIM_APPNAME ${version#v}"
exit
;;
Expand Down

0 comments on commit da3bbf0

Please sign in to comment.