blob: 0052de19ce96338a08855a1d7704708a22b7c7df [file] [log] [blame]
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02001" Vim filetype plugin file
2" Language: Windows PowerShell
3" URL: https://github.com/PProvost/vim-ps1
4" Last Change: 2021 Apr 02
Doug Kearns93197fd2024-01-14 20:59:02 +01005" 2024 Jan 14 by Vim Project (browsefilter)
Riley Bruins0a083062024-06-03 20:40:45 +02006" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Bram Moolenaar130cbfc2021-04-07 21:07:20 +02007
8" Only do this when not done yet for this buffer
9if exists("b:did_ftplugin") | finish | endif
10
11" Don't load another plug-in for this buffer
12let b:did_ftplugin = 1
13
14let s:cpo_save = &cpo
15set cpo&vim
16
17setlocal tw=0
Riley Bruins0a083062024-06-03 20:40:45 +020018setlocal commentstring=#\ %s
Bram Moolenaar130cbfc2021-04-07 21:07:20 +020019setlocal formatoptions=tcqro
20
Doug Kearns93197fd2024-01-14 20:59:02 +010021" Change the browse dialog on Win32 and GTK to show mainly PowerShell-related files
22if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Bram Moolenaar130cbfc2021-04-07 21:07:20 +020023 let b:browsefilter =
24 \ "All PowerShell Files (*.ps1, *.psd1, *.psm1, *.ps1xml)\t*.ps1;*.psd1;*.psm1;*.ps1xml\n" .
25 \ "PowerShell Script Files (*.ps1)\t*.ps1\n" .
26 \ "PowerShell Module Files (*.psd1, *.psm1)\t*.psd1;*.psm1\n" .
Doug Kearns93197fd2024-01-14 20:59:02 +010027 \ "PowerShell XML Files (*.ps1xml)\t*.ps1xml\n"
28 if has("win32")
29 let b:browsefilter .= "All Files (*.*)\t*\n"
30 else
31 let b:browsefilter .= "All Files (*)\t*\n"
32 endif
Bram Moolenaar130cbfc2021-04-07 21:07:20 +020033endif
34
35" Undo the stuff we changed
36let b:undo_ftplugin = "setlocal tw< cms< fo<" .
37 \ " | unlet! b:browsefilter"
38
39let &cpo = s:cpo_save
40unlet s:cpo_save