annotate runtime/ftplugin/bash.vim @ 33666:2d0113f8bc3c v9.0.2071

patch 9.0.2071: objdump files not recognized Commit: https://github.com/vim/vim/commit/10407df7a95d0311c7d2eb920d3b72020db5b301 Author: Colin Kennedy <colinvfx@gmail.com> Date: Thu Oct 26 23:00:05 2023 +0200 patch 9.0.2071: objdump files not recognized Problem: objdump files not recognized Solution: detect *.objdump files, add a filetype plugin Added the objdump file/text format closes: #13425 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Colin Kennedy <colinvfx@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Thu, 26 Oct 2023 23:15:04 +0200
parents 71cbad0921c9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15512
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: bash
32975
71cbad0921c9 runtime: Remove Brams name from a few more runtime files (#12780)
Christian Brabandt <cb@256bit.org>
parents: 18186
diff changeset
3 " Maintainer: The Vim Project <https://github.com/vim/vim>
71cbad0921c9 runtime: Remove Brams name from a few more runtime files (#12780)
Christian Brabandt <cb@256bit.org>
parents: 18186
diff changeset
4 " Last Changed: 2023 Aug 13
15512
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 "
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 " This is not a real filetype plugin. It allows for someone to set 'filetype'
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 " to "bash" in the modeline, and gets the effect of filetype "sh" with
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 " b:is_bash set. Idea from Mahmode Al-Qudsi.
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 if exists("b:did_ftplugin")
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 finish
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 endif
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
18186
03b854983b14 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15512
diff changeset
14 unlet! b:is_sh
03b854983b14 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15512
diff changeset
15 unlet! b:is_kornshell
15512
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 let b:is_bash = 1
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17
18186
03b854983b14 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15512
diff changeset
18 runtime! ftplugin/sh.vim ftplugin/sh_*.vim ftplugin/sh/*.vim
15512
f0f06837a699 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19
18186
03b854983b14 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15512
diff changeset
20 " vim: ts=8