Skip to content

Instantly share code, notes, and snippets.

@mjkloeckner
Last active June 7, 2022 22:25
Show Gist options
  • Save mjkloeckner/6842cf5561606870b481b5729b50c794 to your computer and use it in GitHub Desktop.
Save mjkloeckner/6842cf5561606870b481b5729b50c794 to your computer and use it in GitHub Desktop.
vim verbosely create a mark
function VerboseMark()
echo ''
let c = nr2char(getchar())
exe "mark" c
echon "created mark '" c "' at line " line(".")
endfunction
nnoremap m :call VerboseMark()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment