38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
*ps1.txt* A Windows PowerShell syntax plugin for Vim
|
|
|
|
Maintainer: Peter Provost <http://www.github.com/PProvost>
|
|
License: Apache 2.0
|
|
Version: 2.10
|
|
|
|
INTRODUCTION *ps1-syntax*
|
|
|
|
This plugin provides Vim syntax, indent and filetype detection for Windows
|
|
PowerShell scripts, modules, and XML configuration files.
|
|
|
|
|
|
ABOUT *ps1-about*
|
|
|
|
Grab the latest version or report a bug on GitHub:
|
|
|
|
http://github.com/PProvost/vim-ps1
|
|
|
|
|
|
FOLDING *ps1-folding*
|
|
|
|
The ps1 syntax file provides syntax folding (see |:syn-fold|) for script blocks
|
|
and digital signatures in scripts.
|
|
|
|
When 'foldmethod' is set to "syntax" then function script blocks will be
|
|
folded unless you use the following in your .vimrc or before opening a script: >
|
|
|
|
:let g:ps1_nofold_blocks = 1
|
|
<
|
|
Digital signatures in scripts will also be folded unless you use: >
|
|
|
|
:let g:ps1_nofold_sig = 1
|
|
<
|
|
Note: syntax folding might slow down syntax highlighting significantly,
|
|
especially for large files.
|
|
|
|
------------------------------------------------------------------------------
|
|
vim:ft=help:
|