Skip to content

Instantly share code, notes, and snippets.

@lxfontes
Created November 9, 2018 23:33
Show Gist options
  • Save lxfontes/9c8fc7255725edde7bfe12cfd29c941c to your computer and use it in GitHub Desktop.
Save lxfontes/9c8fc7255725edde7bfe12cfd29c941c to your computer and use it in GitHub Desktop.
Create godoc for function
" adapted from https://github.com/fatih/dotfiles/blob/master/vimrc
" create a go doc comment based on the word under the cursor
function! s:create_go_doc_comment()
norm "zyiw
execute ":norm O// "
norm "zp
execute ":norm A ..."
endfunction
nnoremap <leader>ui :<C-u>call <SID>create_go_doc_comment()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment