fstab.vim 509 B

123456789101112131415161718192021
  1. " Vim ftplugin file
  2. " Language: fstab file
  3. " Maintainer: Radu Dineiu <radu.dineiu@gmail.com>
  4. " URL: https://raw.github.com/rid9/vim-fstab/master/ftplugin/fstab.vim
  5. " Last Change: 2021 Jan 02
  6. " 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  7. " Version: 1.0
  8. "
  9. " Credits:
  10. " Subhaditya Nath <sn03.general@gmail.com>
  11. if exists("b:did_ftplugin")
  12. finish
  13. endif
  14. let b:did_ftplugin = 1
  15. setlocal commentstring=#\ %s
  16. let b:undo_ftplugin = "setlocal commentstring<"
  17. " vim: ts=8 ft=vim