diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-25 16:53:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-25 16:53:12 +0200 |
commit | 2afc3b4f776a4fe2bb22d0a79e77012d79b4ec1e (patch) | |
tree | 7f106389dc9cad1662cdd79c1f4f4f1c50135eea /runtime | |
parent | 24aa48b7a265c24e18f0f978dfe0255e138e2b90 (diff) | |
download | vim-git-2afc3b4f776a4fe2bb22d0a79e77012d79b4ec1e.tar.gz |
patch 8.2.1292: AIDL filetype not recognizedv8.2.1292
Problem: AIDL filetype not recognized.
Solution: Add filetype detection. (Dominique Pellé, closes #6533)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 7c76b12ee..80ea2949c 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -88,6 +88,9 @@ endif " AHDL au BufNewFile,BufRead *.tdf setf ahdl +" AIDL +au BufNewFile,BufRead *.aidl setf aidl + " AMPL au BufNewFile,BufRead *.run setf ampl |