view runtime/indent/ps1.vim @ 27907:172f5b915674

Added tag v8.2.4478 for changeset 11141b2ec0e1b50ac6aa100a4879c034490c8e9f
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Feb 2022 17:15:04 +0100
parents 5c98ea5f5d6e
children
line wrap: on
line source

" Vim indent file
" Language:    Windows PowerShell
" URL:         https://github.com/PProvost/vim-ps1
" Last Change: 2017 Oct 19

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
	finish
endif
let b:did_indent = 1

" smartindent is good enough for powershell
setlocal smartindent
" disable the indent removal for # marks
inoremap <buffer> # X#

let b:undo_indent = "setl si<"