makecols.vim: converting lists to columns made simple
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
921 B

9 years ago
9 years ago
9 years ago
9 years ago
  1. makecols
  2. ========
  3. Makecols.vim is intended to easily convert lists into column based
  4. layouts.
  5. The easiest way to explain is with examples.
  6. Say you have a list of things (in this case numbers)
  7. 1
  8. 2
  9. 3
  10. 4
  11. 5
  12. 6
  13. 7
  14. 8
  15. 9
  16. 10
  17. and you’d like it to look neater
  18. 1 2
  19. 3 4
  20. 5 6
  21. 7 8
  22. 9 10
  23. Installation
  24. ------------
  25. If you don't have a preferred installation method, I recommend
  26. installing [pathogen.vim](https://github.com/tpope/vim-pathogen), and
  27. then simply copy and paste:
  28. cd ~/.vim/bundle
  29. git clone git://github.com/leothelocust/vim-makecols.git
  30. Once help tags have been generated, you can view the manual with
  31. `:help makecols`.
  32. Contributing
  33. ------------
  34. Just pull, make some changes, and create a merge request.
  35. License
  36. -------
  37. Copyright (c) Levi Olson. Distribution under the same terms as Vim itself.
  38. See `:help license`.