Nvim Devdocs Save Abandoned

Neovim DevDocs integration

Project README

nvim-devdocs

nvim-devdocs is a plugin which brings DevDocs 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 to render the markdown for a better experience.

Preview

nvim-devdocs search

Using glow for rendering markdown:

nvim-devdocs with glow

Installation

Lazy:

return {
  "luckasRanarison/nvim-devdocs",
  dependencies = {
    "nvim-lua/plenary.nvim",
    "nvim-telescope/telescope.nvim",
    "nvim-treesitter/nvim-treesitter",
  },
  opts = {}
}

Packer:

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:

{
  ensure_installed = { "html" },
}

Configuration

Here is the default configuration:

{
  dir_path = vim.fn.stdpath("data") .. "/devdocs", -- installation directory
  telescope = {}, -- passed to the telescope picker
  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: { "-p" }
  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.
  • 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:

require('nvim-devdocs').setup({
  -- ...
  after_open = function(bufnr)
    vim.api.nvim_buf_set_keymap(bufnr, 'n', '<Esc>', ':close<CR>', {})
  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.

Pull requests and feature requests are welcome!

Similar projects

Credits

Open Source Agenda is not affiliated with "Nvim Devdocs" Project. README Source: luckasRanarison/nvim-devdocs
Stars
118
Open Issues
12
Last Commit
8 months ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating