view runtime/indent/bash.vim @ 23025:3204c5e23474 v8.2.2059

patch 8.2.2059: Amiga: can't find plugins Commit: https://github.com/vim/vim/commit/6ee874d378829b62e0944063a9a029e81b5debfb Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 27 19:01:31 2020 +0100 patch 8.2.2059: Amiga: can't find plugins Problem: Amiga: can't find plugins. Solution: Do not use "**" in the pattern. (Ola S?der, closes https://github.com/vim/vim/issues/7384)
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Nov 2020 19:15:04 +0100
parents 03b854983b14
children 71cbad0921c9
line wrap: on
line source

" Vim indent file
" Language:	bash
" Maintainer:	Bram
" Last Change:	2019 Sep 27

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
   finish
endif

" The actual indenting is in sh.vim and controlled by buffer-local variables.
unlet! b:is_sh
unlet! b:is_kornshell
let b:is_bash = 1

runtime! indent/sh.vim

" vim: ts=8