Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 1 | " Vim indent file |
2 | " Language: Windows PowerShell | ||||
3 | " URL: https://github.com/PProvost/vim-ps1 | ||||
4 | " Last Change: 2017 Oct 19 | ||||
5 | |||||
6 | " Only load this indent file when no other was loaded. | ||||
7 | if exists("b:did_indent") | ||||
8 | finish | ||||
9 | endif | ||||
10 | let b:did_indent = 1 | ||||
11 | |||||
12 | " smartindent is good enough for powershell | ||||
13 | setlocal smartindent | ||||
14 | " disable the indent removal for # marks | ||||
15 | inoremap <buffer> # X# | ||||
16 | |||||
17 | let b:undo_indent = "setl si<" |