From 5753e5e7ebb60d26d78aa3c99a8b0e2ee8023056 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Fri, 27 Oct 2023 09:37:48 +0200 Subject: vim-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: vim/vim#13425 https://github.com/vim/vim/commit/10407df7a95d0311c7d2eb920d3b72020db5b301 Co-authored-by: Colin Kennedy --- runtime/lua/vim/filetype.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtime/lua') diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 627732f164..35ad8e21b8 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -716,6 +716,8 @@ local extension = { nsi = 'nsis', nsh = 'nsis', obj = 'obj', + objdump = 'objdump', + cppobjdump = 'objdump', obl = 'obse', obse = 'obse', oblivion = 'obse', -- cgit