Skip to content

Instantly share code, notes, and snippets.

@lucs
Last active December 11, 2022 14:48
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 lucs/b5e4cb0b29d9d8d820bf2bb697131cb4 to your computer and use it in GitHub Desktop.
Save lucs/b5e4cb0b29d9d8d820bf2bb697131cb4 to your computer and use it in GitHub Desktop.
Vim: Toggle 「/*⋯*/」 style one line comments.
" --------------------------------------------------------------------
" Toggle 「/*⋯*/」 style one line comments.
nnoremap <silent> <Plug>CStyleOneLine
\ ^:if search('/\*.*\*/', 'c', line(".")) != 0<cr>
\ :.s,/\* *\(.\{-}\) *\*/,\1,g<cr>
\ :else<cr>
\ :.s,\(\s*\)\(.*\)\(\s*\),\1/\* \2 \*/\3,g<cr>
\ :endif<cr>
\ :noh<cr>
\:call repeat#set("\<Plug>CStyleOneLine")<cr>
nmap ,cc <Plug>CStyleOneLine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment