From 5cdfa3324f4cafe2ac98d2e9ec4e812aa9c0598e Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Thu, 3 Apr 2025 09:54:08 +0200 Subject: vim-patch:9.1.1268: filetype: dax files are not recognized Problem: filetype: dax files are not recognized Solution: detect "*.dax" as dax filetype, include dax filetype and syntax plugin (Anarion Dunedain) Data Analysis Expressions (DAX) is a formula expression language used in Analysis Services, Power BI, and Power Pivot in Excel. DAX formulas include functions, operators, and values to perform advanced calculations and queries on data in related tables and columns in tabular data models. DAX language overview: - https://learn.microsoft.com/en-us/dax/dax-overview closes: vim/vim#17035 https://github.com/vim/vim/commit/7f518e044fbc60cffdf2c0f611cc8c4dc35c338c Co-authored-by: Anarion Dunedain --- runtime/lua/vim/filetype.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lua') diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index a35a1a32b3..caa937aa83 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -380,6 +380,7 @@ local extension = { dat = detect.dat, Dat = detect.dat, DAT = detect.dat, + dax = 'dax', dcd = 'dcd', decl = detect.decl, dec = detect.decl, -- cgit