Skip to content

Instantly share code, notes, and snippets.

@brainpicture
Created November 13, 2015 14:00
Show Gist options
  • Save brainpicture/a49d68c576d8b15e545a to your computer and use it in GitHub Desktop.
Save brainpicture/a49d68c576d8b15e545a to your computer and use it in GitHub Desktop.
" BookmarkPut
vnoremap <silent> m y:call BookmarkPut()<CR>
function! BookmarkPut()
echo "bookmark: "
let c = getchar()
if !type(c)
let c = nr2char(c)
endif
if (match(c, '[a-zA-Z0-9]\C') != -1)
exec "normal! `".c."P"
elseif
echo "should be a leter"
endif
endfunction
Copy link

ghost commented Nov 13, 2015

Только nano! Только хардкор!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment