Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luckasranarison/nvim-devdocs
Neovim DevDocs integration
https://github.com/luckasranarison/nvim-devdocs
devdocs neovim neovim-plugin
Last synced: about 2 months ago
JSON representation
Neovim DevDocs integration
- Host: GitHub
- URL: https://github.com/luckasranarison/nvim-devdocs
- Owner: luckasRanarison
- License: mit
- Archived: true
- Created: 2023-08-06T04:56:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-22T18:00:47.000Z (6 months ago)
- Last Synced: 2024-07-31T20:50:57.005Z (4 months ago)
- Topics: devdocs, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 594 KB
- Stars: 264
- Watchers: 4
- Forks: 17
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nvim-devdocs
nvim-devdocs is a plugin which brings [DevDocs](https://devdocs.io) documentations into neovim. Install, search and preview documentations directly inside neovim in markdown format with telescope integration. You can also use custom commands like [glow](https://github.com/charmbracelet/glow) to render the markdown for a better experience.
## Preview
![nvim-devdocs search](./.github/preview.png)
Using [glow](https://github.com/charmbracelet/glow) for rendering markdown:
![nvim-devdocs with glow](./.github/preview-glow.png)
## Features
- Offline usage.
- Search using Telescope.
- Markdown rendering using custom commands.
- Open in browser.
- Internal search using the `K` key (see `:h K`).
## Installation
Lazy:
```lua
return {
"luckasRanarison/nvim-devdocs",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
"nvim-treesitter/nvim-treesitter",
},
opts = {}
}
```Packer:
```lua
use {
"luckasRanarison/nvim-devdocs",
requires = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("nvim-devdocs").setup()
end
}
```The plugin uses treesitter API for converting HTML to markdown so make sure you have treesitter `html` parser installed.
Inside your treesitter configuration:
```lua
{
ensure_installed = { "html" },
}
```## Configuration
Here is the default configuration:
```lua
{
dir_path = vim.fn.stdpath("data") .. "/devdocs", -- installation directory
telescope = {}, -- passed to the telescope picker
filetypes = {
-- extends the filetype to docs mappings used by the `DevdocsOpenCurrent` command, the version doesn't have to be specified
-- scss = "sass",
-- javascript = { "node", "javascript" }
},
float_win = { -- passed to nvim_open_win(), see :h api-floatwin
relative = "editor",
height = 25,
width = 100,
border = "rounded",
},
wrap = false, -- text wrap, only applies to floating window
previewer_cmd = nil, -- for example: "glow"
cmd_args = {}, -- example using glow: { "-s", "dark", "-w", "80" }
cmd_ignore = {}, -- ignore cmd rendering for the listed docs
picker_cmd = false, -- use cmd previewer in picker preview
picker_cmd_args = {}, -- example using glow: { "-s", "dark", "-w", "50" }
mappings = { -- keymaps for the doc buffer
open_in_browser = ""
},
ensure_installed = {}, -- get automatically installed
after_open = function(bufnr) end, -- callback that runs after the Devdocs window is opened. Devdocs buffer ID will be passed in
}
```## Usage
To use the documentations from nvim-devdocs, you need to install it by executing `:DevdocsInstall`. The documentation is indexed and built during the download. Since the building process is done synchronously and may block input, you may want to download larger documents (more than 10MB) in headless mode: `nvim --headless +"DevdocsInstall rust"`.
## Commands
Available commands:
- `DevdocsFetch`: Fetch DevDocs metadata.
- `DevdocsInstall`: Install documentation, 0-n args.
- `DevdocsUninstall`: Uninstall documentation, 0-n args.
- `DevdocsOpen`: Open documentation in a normal buffer, 0 or 1 arg.
- `DevdocsOpenFloat`: Open documentation in a floating window, 0 or 1 arg.
- `DevdocsOpenCurrent`: Open documentation for the current filetype in a normal buffer.
- `DevdocsOpenCurrentFloat`: Open documentation for the current filetype in a floating window.
- `DevdocsToggle`: Toggle floating window.
- `DevdocsUpdate`: Update documentation, 0-n args.
- `DevdocsUpdateAll`: Update all documentations.Commands support completion, and the Telescope picker will be used when no argument is provided.
## Lifecycle Hook
An `after_open` callback is supplied which accepts the buffer ID of the Devdocs window. It can be used for things like buffer-specific keymaps:
```lua
require('nvim-devdocs').setup({
-- ...
after_open = function(bufnr)
vim.api.nvim_buf_set_keymap(bufnr, 'n', '', ':close', {})
end
})
```## TODO
- More search options
- External previewers.
- More features.## Contributing
The HTML converter is still experimental, and not all documentation has been thoroughly tested yet. If you encounter rendering issues, feel free to submit an [issue](https://github.com/luckasRanarison/nvim-devdocs/issues).
Pull requests and feature requests are welcome!
## Similar projects
- [nvim-telescope-zeal-cli](https://gitlab.com/ivan-cukic/nvim-telescope-zeal-cli) Show Zeal documentation pages in Neovim Telescope.
- [devdocs.vim](https://github.com/girishji/devdocs.vim) Offers similar features but uses vimscript and pandoc.## Credits
- [The DevDocs project](https://github.com/freeCodeCamp/devdocs) for the documentations.
- [devdocs.el](https://github.com/astoff/devdocs.el) for inspiration.