Ruby Documentation in Neovim
Published on 18 Apr 2020
I was enjoying this lovely plugin, but it stopped working.
After wasting some time on it, I decided to write the same functionality on my own.
"*****************************************************************************
"" vim-ruby-doc
"*****************************************************************************
" For some reason this plugin doesn't work anymore,
" so I hacked together the same functionality, using its example.
" Replace 'firefox' with whatever command you need instead.
let g:ruby_doc_url_template="http://rubydoc.info/search/stdlib/core?q=%"
let g:rails_doc_url_template="http://api.rubyonrails.org/?q=%"
let g:rspec_doc_url_template='https://www.relishapp.com/rspec/search?query=%'
function! AnyRDoc(url_template)
if &ft =~ "ruby"
else
return
endif
let s:wordUnderCursor = expand("<cword>")
let s:url = substitute(a:url_template, "%", s:wordUnderCursor, "g")
let s:cmd = "!firefox \"" . s:url . "\""
execute s:cmd
endfunction
map RB :call AnyRDoc(ruby_doc_url_template)<CR>
map RR :call AnyRDoc(rails_doc_url_template)<CR>
map RS :call AnyRDoc(rspec_doc_url_template)<CR>
all tags
activerecord android annoyances api apt arch array artix atom az3w backend bash blog browser bug callback career cli cloud code coding config configuration cp crud css database db design devops django email erp filter fugitive gif gist git gnome grep hebrew http ide isbn-fetcher iso javascript job search js kanban kanban\ kindle koans linux logger manjaro map markdown microservices mobi mtp neovim nodejs packages pastbin patch post python rails reduce refactoring rest routes rspec ruby scripting security sed shell sql string_replacement study tdd terminal testing version_control vim walkthrough workflow