Mercurial > vim
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 |
rev | line source |
---|---|
15512 | 1 " Vim filetype plugin file |
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 | 5 " |
6 " This is not a real filetype plugin. It allows for someone to set 'filetype' | |
7 " to "bash" in the modeline, and gets the effect of filetype "sh" with | |
8 " b:is_bash set. Idea from Mahmode Al-Qudsi. | |
9 | |
10 if exists("b:did_ftplugin") | |
11 finish | |
12 endif | |
13 | |
18186 | 14 unlet! b:is_sh |
15 unlet! b:is_kornshell | |
15512 | 16 let b:is_bash = 1 |
17 | |
18186 | 18 runtime! ftplugin/sh.vim ftplugin/sh_*.vim ftplugin/sh/*.vim |
15512 | 19 |
18186 | 20 " vim: ts=8 |