Skip to content

Instantly share code, notes, and snippets.

@colwem
Created March 21, 2016 17:04
Show Gist options
  • Select an option

  • Save colwem/7b6fc77b6720ce31c1ca to your computer and use it in GitHub Desktop.

Select an option

Save colwem/7b6fc77b6720ce31c1ca to your computer and use it in GitHub Desktop.
function! MoveToMiddle()
let end = strdisplaywidth(substitute(getline('.'), '\s*$', '', ''))
let start = indent('.')
call cursor(0, (start + end)/2)
endfunction
map gm :call MoveToMiddle()<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment