Skip to content

Instantly share code, notes, and snippets.

@statox
Created August 30, 2018 13:36
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 statox/d5ae227a8eb96b882f23cba124e40649 to your computer and use it in GitHub Desktop.
Save statox/d5ae227a8eb96b882f23cba124e40649 to your computer and use it in GitHub Desktop.
function! MakeNewLine()
if getline(line('.')) =~# "^\s*>.*$"
normal! o>
else
normal! o
endif
endfunction
inoremap <cr> <C-o>:call MakeNewLine()<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment