Out of the box, this plugin automatically regenerates your rustdoc documentation. Currently, this plugin is in highly experimental state.
None. This tool is shipped with Rust.
Please use <:h rustdoc> on vim to read the full documentation.
Copy this in your vimconfig:
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vim rustdoc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Enable it for the next languages
let g:rustdoc_include_filetypes = ['rust']
" Enable the keybindings for the languages in g:rustdoc_include_filetypes
augroup rustdoc_mappings
for ft in g:rustdoc_include_filetypes
execute 'autocmd FileType ' . ft . ' nnoremap <buffer> <C-h> :<C-u>RustdocOpen<CR>'
"execute 'autocmd FileType ' . ft . ' nnoremap <buffer> <C-k> :<C-u>RustdocRegen<CR>'
endfor
augroup END
Enable automated doc generation on save (optional)
" Enabled by default for the languages defined in g:rustdoc_include_filetypes
let g:rustdoc_auto_regen = 1
Change the way the documentation is opened (optional)
" rustdoc - Open on browser
let g:rustdoc_browser_cmd = get(g:, 'rustdoc_browser_cmd', 'xdg-open')
let g:rustdoc_browser_file = get(g:, 'rustdoc_browser_file', './docs/index.html')
Custom command to generate the rustdoc documentation (optional)
let g:rustdoc_cmd = 'rustdoc'
Change the way the root of the project is detected (optional)
" By default, we detect the root of the project where the first .git file is found
let g:rustdoc_project_root = ['.git', '.hg', '.svn', '.bzr', '_darcs', '_FOSSIL_', '.fslckout']
Please have in mind that you are responsable for adding your rustdoc directory to the .gitignore if you don't want it to be pushed by accident.
It is also possible to disable this plugin for a single project. For that, create .norustdoc file in the project root directory.
This project started as a hack of vim-doxygen, which started as a hack of vim-guttentags. We use its boiler plate functions to manage directories in vimscript with good compatibility across operative systems. So please support its author too if you can!