annotate runtime/indent/xslt.vim @ 27106:d7e6b85dd89d
v8.2.4082
patch 8.2.4082: check for autoload file name and prefix fails
Commit: https://github.com/vim/vim/commit/3049fcf0a189b0fea8468fa308887b8252d93dce
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 13 19:25:50 2022 +0000
patch 8.2.4082: check for autoload file name and prefix fails
Problem: Check for autoload file name and prefix fails. (Christian J.
Robinson)
Solution: Only lower case the prefix on systems where the file name is not
case sensitive.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 13 Jan 2022 20:30:06 +0100 |
parents |
3fc0f57ecb91 |
children |
|
rev |
line source |
7
|
1 " Vim indent file
|
|
2 " Language: XSLT .xslt files
|
|
3 " Maintainer: David Fishburn <fishburn@ianywhere.com>
|
|
4 " Last Change: Wed May 14 2003 8:48:41 PM
|
|
5
|
|
6 " Only load this indent file when no other was loaded.
|
|
7 if exists("b:did_indent")
|
|
8 finish
|
|
9 endif
|
|
10
|
|
11 " Use XML formatting rules
|
|
12 runtime! indent/xml.vim
|
|
13
|