HN user

syrupcore

1 karma
Posts0
Comments1
View on HN
No posts found.
Vim: revisited 15 years ago

I ran across some variation on this toggle somewhere. Very handy.

  " toggle line numbers from absolute to relative with f2.
  map <silent> <F2> :if &number <Bar>
      \set relativenumber <Bar>
        \else <Bar>
      \set number <Bar>
        \endif<cr>