Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 1.02 KB

README.md

File metadata and controls

43 lines (27 loc) · 1.02 KB

Logo

angeldoc-vim

An open-source replacement for GhostDoc for Vim and NeoVim.

Demo

Setting it up

Put the plugin in your vimrc.

E.g. if you are using Plug:

Plug 'jpfeiffer16/angeldoc-vim'

Add a mapping to AngelDoc#InsertXmlDoc() in your .vimrc.

Example:

nnoremap /// :call AngelDoc#InsertXmlDoc()<CR>

Configuration

You can configure the dotnet binary to run to get the documentation by setting the g:angeldoc_path variable in your vimrc.

Example:

let g:angeldoc_path = '/home/myuser/Source/AngelDoc/AngelDoc/bin/Debug/AngelDoc.dll'

Once the plugin is installed, run :AngelDocInstall to install the latest release. The plugin should now work.

Troubleshooting

If you run into issues running the AngelDocInstall command try running the below commands from the terminal in the plugin dir for angeldoc-vim to manually install the latest release of the AngelDoc tool.

Windows

powershell .\manage-releases.ps1

Unix

./manage-releases.ps1