Skip to content

Instantly share code, notes, and snippets.

@kmARC
Last active October 25, 2019 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmARC/d1c5a49b3a062721d077ee5db30fe216 to your computer and use it in GitHub Desktop.
Save kmARC/d1c5a49b3a062721d077ee5db30fe216 to your computer and use it in GitHub Desktop.
autocmd FileType dockerfile setlocal keywordprg=:DockerHelp
function! DockerHelp(keyword)
exec "silent !xdg-open https://docs.docker.com/engine/reference/builder/\\#"
\ . tolower(a:keyword)
exec 'redraw!'
endfunction
command! -nargs=1 DockerHelp :call DockerHelp(<f-args>)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment