HiPhish
Getting documentation programmatically?
Hello,
I know that I can get the documentation of a symbol in iex by typing h whatever, but is there a way to get this documentation programmatically? For context, I use Neovim and I would like a way of reading the documentation inside an editor buffer instead of a REPL running inside a terminal shell. I have already written info.vim which does similar thing for GNU Info documents. Neovim makes it possible to write remote plugins in Elixir, so if there is some Elixir module to get the documentation as a text string it should be fairly simple to pull off.
Most Liked
axelson
I just wanted to make sure you’re aware that there are existing ElixirLS-powered vim/neovim extension that already support fetching Elixir documentation:
- GitHub - prabirshrestha/vim-lsp: async language server protocol plugin for vim and neovim
- GitHub - elixir-lsp/coc-elixir: Elixir language server extension based on elixir-ls for coc.nvim
- GitHub - neoclide/coc.nvim: Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.
But if you want to create to create this extension for learning purposes, or as an improvement (such as being lighter-weight), then please go ahead ![]()
HiPhish
Yes, I am aware of it and I’m using it, it’s a fantastic tool.
That’s the plan, I am working through the guide right now and I want to try my hands at something useful next. Plus, I prefer reading documentation in a separate buffer I can have open to the side rather than a floating window. I could have probably hacked something using the Lua API of the built-in client, but this seems more interesting. Plus it would work even without a language server running.
emoragaf
Take a look at h implementation: elixir/introspection.ex at d8d89b431e197dd230ce01bc20f4656d9ef24e5c · elixir-lang/elixir · GitHub
It seems to be using Code.fetch_docs underneath
benwilson512
:Kernel is not the same as Kernel. Kernel is the same as :'Elixir.Kernel'. Try IEx.Introspection.h(Kernel)
eksperimental
You can use Kernel, no need for cumbersome and non-standard :'Elixir.Kernel'. Btw Kernel is an alias that resolves to :"Elixir.Kernel". :Kernel is just an atom.
iex(2)> :"Elixir.Kernel"
Kernel
iex(3)> :Kernel
:Kernel







