Skip to content

Commit

Permalink
task: auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 28, 2024
1 parent dd46d53 commit f98deb3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/treesj.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*treesj.txt* For Neovim >= 0.8.0 Last change: 2024 April 22
*treesj.txt* For Neovim >= 0.8.0 Last change: 2024 May 28

==============================================================================
Table of Contents *treesj-table-of-contents*
Expand Down Expand Up @@ -45,7 +45,7 @@ FEATURES *treesj-treesj-features*
REQUIREMENTS *treesj-treesj-requirements*

- Neovim 0.9+ <https://github.com/neovim/neovim/releases>
- nvim-treesitter <https://github.com/nvim-treesitter/nvim-treesitter>
- nvim-treesitter <https://github.com/nvim-treesitter/nvim-treesitter> (optional: if you install parsers with `nvim-treesitter`)


INSTALLATION *treesj-treesj-installation*
Expand All @@ -56,7 +56,7 @@ With lazy.nvim <https://github.com/folke/lazy.nvim>
return {
'Wansmer/treesj',
keys = { '<space>m', '<space>j', '<space>s' },
dependencies = { 'nvim-treesitter/nvim-treesitter' },
dependencies = { 'nvim-treesitter/nvim-treesitter' }, -- if you install parsers with `nvim-treesitter`
config = function()
require('treesj').setup({--[[ your config ]]})
end,
Expand All @@ -68,7 +68,7 @@ Withpacker.nvim <https://github.com/wbthomason/packer.nvim>
>lua
use({
'Wansmer/treesj',
requires = { 'nvim-treesitter/nvim-treesitter' },
requires = { 'nvim-treesitter/nvim-treesitter' }, -- if you install parsers with `nvim-treesitter`
config = function()
require('treesj').setup({--[[ your config ]]})
end,
Expand Down

0 comments on commit f98deb3

Please sign in to comment.