annotate runtime/indent/ps1.vim @ 31653:ec76f9d2319e
v9.0.1159
patch 9.0.1159: extends argument for class not implemented yet
Commit: https://github.com/vim/vim/commit/8367716a6e9589d61a771e6c329da05c9b55e61a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 8 19:54:10 2023 +0000
patch 9.0.1159: extends argument for class not implemented yet
Problem: Extends argument for class not implemented yet.
Solution: Basic implementation of "extends".
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 08 Jan 2023 21: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<"
|