reduce neovim version requirement
This commit is contained in:
parent
0c1f19ca40
commit
24174247f7
3 changed files with 6 additions and 6 deletions
2
.github/workflows/panvimdoc.yml
vendored
2
.github/workflows/panvimdoc.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
vimdoc: orgmode-babel.nvim
|
vimdoc: orgmode-babel.nvim
|
||||||
# The following are all optional
|
# The following are all optional
|
||||||
pandoc: "README.md"
|
pandoc: "README.md"
|
||||||
version: "NVIM v0.10.0"
|
version: "NVIM v0.9.0"
|
||||||
toc: true
|
toc: true
|
||||||
treesitter: true
|
treesitter: true
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ you to add anything extra to your ~init.el~.
|
||||||
|
|
||||||
- [[https://github.com/nvim-orgmode/orgmode][nvim-orgmode]]
|
- [[https://github.com/nvim-orgmode/orgmode][nvim-orgmode]]
|
||||||
- [[https://github.com/nvim-treesitter/nvim-treesitter][nvim-treesitter]]
|
- [[https://github.com/nvim-treesitter/nvim-treesitter][nvim-treesitter]]
|
||||||
- Neovim v0.10.0 or later
|
- Neovim v0.9.0 or later
|
||||||
- A working ~emacs~ installation (does not require configuration)
|
- A working ~emacs~ installation (does not require configuration)
|
||||||
|
|
||||||
** Setup
|
** Setup
|
||||||
|
|
|
||||||
|
|
@ -248,9 +248,9 @@ vim.api.nvim_create_user_command("OrgExecute", function(el)
|
||||||
|
|
||||||
-- vim.notify(cmd, vim.log.levels.DEBUG)
|
-- vim.notify(cmd, vim.log.levels.DEBUG)
|
||||||
|
|
||||||
local ouput = vim.system(cmd):wait()
|
local output = vim.fn.system(cmd)
|
||||||
|
|
||||||
vim.print(ouput.stdout, ouput.stderr)
|
vim.print(output)
|
||||||
|
|
||||||
if not vim.bo[bufnr].modified then
|
if not vim.bo[bufnr].modified then
|
||||||
vim.cmd(bufnr .. "bufdo edit")
|
vim.cmd(bufnr .. "bufdo edit")
|
||||||
|
|
@ -350,9 +350,9 @@ vim.api.nvim_create_user_command("OrgTangle", function(el)
|
||||||
|
|
||||||
-- vim.notify(cmd, vim.log.levels.DEBUG)
|
-- vim.notify(cmd, vim.log.levels.DEBUG)
|
||||||
|
|
||||||
local ouput = vim.system(cmd):wait()
|
local output = vim.fn.system(cmd)
|
||||||
|
|
||||||
vim.print(ouput.stdout, ouput.stderr)
|
vim.print(output)
|
||||||
end, {
|
end, {
|
||||||
range = "%",
|
range = "%",
|
||||||
bang = true,
|
bang = true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue