Skip to content

Instantly share code, notes, and snippets.

@smison
Last active August 29, 2015 14:05
Show Gist options
  • Save smison/76a86ab59300e8069563 to your computer and use it in GitHub Desktop.
Save smison/76a86ab59300e8069563 to your computer and use it in GitHub Desktop.
set number/nonumberトグルをリファクタ
" set number
function Setnumber()
if &number
setlocal nonumber
else
setlocal number
endif
endfunction
nnoremap <C-m> :call Setnumber()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment