urlshortcut.vim 475 B

123456789101112131415161718192021
  1. " Vim filetype plugin file
  2. " Language: MS Windows URL shortcut file
  3. " Maintainer: ObserverOfTime <chronobserver@disroot.org>
  4. " Latest Revision: 2023-06-04
  5. if exists("b:did_ftplugin")
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. let s:cpo_save = &cpoptions
  10. set cpoptions&vim
  11. let b:undo_ftplugin = "setl com< cms< fo<"
  12. setlocal comments=:; commentstring=;\ %s
  13. setlocal formatoptions-=t formatoptions+=croql
  14. let &cpoptions = s:cpo_save
  15. unlet s:cpo_save