Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xi/vim-auto-tabstop
A Vim plugin for automatically setting tabstop size
https://github.com/xi/vim-auto-tabstop
Last synced: about 1 month ago
JSON representation
A Vim plugin for automatically setting tabstop size
- Host: GitHub
- URL: https://github.com/xi/vim-auto-tabstop
- Owner: xi
- License: mit
- Created: 2016-10-06T07:44:24.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-10-04T19:41:04.000Z (about 1 year ago)
- Last Synced: 2023-10-05T07:33:30.948Z (about 1 year ago)
- Language: Vim Script
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A Vim plugin for automatically setting tabstop size
This is mostly useful to align tsv files like this:
James\tSmith\t38,313
Michael\tSmith\t34,810
Robert\tSmith\t34,269
Maria\tGarcia\t32,092 (long string in last column is ignored)With a tabstop of 2 this will look like this:
James Smith 38,313
Michael Smith 34,810
Robert Smith 34,269
Maria Garcia 32,092 (long string in last column is ignored)Pressing `` will automatically set the tabstop to the value required to
get proper alignment (in this case 8):James Smith 38,313
Michael Smith 34,810
Robert Smith 34,269
Maria Garcia 32,092 (long string in last column is ignored)