annotate runtime/indent/ps1.vim @ 32637:39cade5fb57a
v9.0.1650
patch 9.0.1650: MS-Windows: default 'viewdir' may include read-only directory
Commit: https://github.com/vim/vim/commit/801961d2c2876e5d2d0b52a585b9d04535168ebd
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 23 16:15:13 2023 +0100
patch 9.0.1650: MS-Windows: default 'viewdir' may include read-only directory
Problem: MS-Windows: default 'viewdir' may include read-only directory.
Solution: Use $HOME instead of $VIM for 'viewdir' default. (closes https://github.com/vim/vim/issues/12119)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 23 Jun 2023 17:30:06 +0200 |
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<"
|