-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change powershell provider to PProvost, closes #177
- Loading branch information
Showing
4 changed files
with
81 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -658,6 +658,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') == | |
au BufNewFile,BufRead *.ps1 set ft=ps1 | ||
au BufNewFile,BufRead *.psd1 set ft=ps1 | ||
au BufNewFile,BufRead *.psm1 set ft=ps1 | ||
au BufNewFile,BufRead *.pssc set ft=ps1 | ||
|
||
endif | ||
|
||
|
@@ -673,7 +674,6 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') == | |
|
||
au BufNewFile,BufRead *.ps1xml set ft=ps1xml | ||
|
||
|
||
endif | ||
|
||
" ftdetect/pug.vim | ||
|
@@ -1018,4 +1018,19 @@ au BufNewFile,BufRead *.vue setf vue.html.javascript.css | |
|
||
endif | ||
|
||
" ftdetect/xml.vim | ||
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') == -1 | ||
|
||
" Vim ftdetect plugin file | ||
" Language: Windows PowerShell | ||
" Maintainer: Peter Provost <[email protected]> | ||
" Version: 2.10 | ||
" Project Repository: https://github.com/PProvost/vim-ps1 | ||
" Vim Script Page: http://www.vim.org/scripts/script.php?script_id=1327 | ||
|
||
au BufNewFile,BufRead *.cdxml set ft=xml | ||
au BufNewFile,BufRead *.psc1 set ft=xml | ||
|
||
endif | ||
|
||
augroup END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters