annotate runtime/indent/ps1.vim @ 31649:520857d1fda7
v9.0.1157
patch 9.0.1157: "implements" only handles one interface name
Commit: https://github.com/vim/vim/commit/df8f9473596c8fb18ec893de677dba455e8925b3
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 7 14:51:03 2023 +0000
patch 9.0.1157: "implements" only handles one interface name
Problem: "implements" only handles one interface name.
Solution: Handle a comma separated list of names. Check for duplicate
names.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 07 Jan 2023 16:00:05 +0100 |
parents |
5c98ea5f5d6e |
children |
|
rev |
line source |
24387
|
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<"
|