Allows you to quickly search through a local copy of cppreference documentation with fzf fuzzy finder, and open it in your web browser.
The html files are automatically fetched and indexed from cppreference-doc GitHub repository. The archive weights about 5MiB.
With packer.nvim:
use {
"Xertes0/cppdoc.nvim",
config = function()
require("cppdoc").setup()
end
}
Then you can map a key to use it:
vim.keymap.set("n", "<leader>dc", ":lua require('cppdoc').open()<CR>")