Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
| 2 | " Language: Windows PowerShell |
| 3 | " URL: https://github.com/PProvost/vim-ps1 |
| 4 | " Last Change: 2021 Apr 02 |
Doug Kearns | 93197fd | 2024-01-14 20:59:02 +0100 | [diff] [blame] | 5 | " 2024 Jan 14 by Vim Project (browsefilter) |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 6 | |
| 7 | " Only do this when not done yet for this buffer |
| 8 | if exists("b:did_ftplugin") | finish | endif |
| 9 | |
| 10 | " Don't load another plug-in for this buffer |
| 11 | let b:did_ftplugin = 1 |
| 12 | |
| 13 | let s:cpo_save = &cpo |
| 14 | set cpo&vim |
| 15 | |
| 16 | setlocal tw=0 |
| 17 | setlocal commentstring=#%s |
| 18 | setlocal formatoptions=tcqro |
| 19 | |
Doug Kearns | 93197fd | 2024-01-14 20:59:02 +0100 | [diff] [blame] | 20 | " Change the browse dialog on Win32 and GTK to show mainly PowerShell-related files |
| 21 | if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 22 | let b:browsefilter = |
| 23 | \ "All PowerShell Files (*.ps1, *.psd1, *.psm1, *.ps1xml)\t*.ps1;*.psd1;*.psm1;*.ps1xml\n" . |
| 24 | \ "PowerShell Script Files (*.ps1)\t*.ps1\n" . |
| 25 | \ "PowerShell Module Files (*.psd1, *.psm1)\t*.psd1;*.psm1\n" . |
Doug Kearns | 93197fd | 2024-01-14 20:59:02 +0100 | [diff] [blame] | 26 | \ "PowerShell XML Files (*.ps1xml)\t*.ps1xml\n" |
| 27 | if has("win32") |
| 28 | let b:browsefilter .= "All Files (*.*)\t*\n" |
| 29 | else |
| 30 | let b:browsefilter .= "All Files (*)\t*\n" |
| 31 | endif |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 32 | endif |
| 33 | |
| 34 | " Undo the stuff we changed |
| 35 | let b:undo_ftplugin = "setlocal tw< cms< fo<" . |
| 36 | \ " | unlet! b:browsefilter" |
| 37 | |
| 38 | let &cpo = s:cpo_save |
| 39 | unlet s:cpo_save |