diff options
author | Austin Gatlin <austin@gatlin.io> | 2021-06-26 12:02:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-06-26 12:02:55 +0200 |
commit | f3caeb63d62c08b579e9b5f40b35e8bf64dde87a (patch) | |
tree | 89bb7397cf7fa5eb84b9fda3f3cf66a13f5dba63 /runtime/autoload | |
parent | 6582e230a0f6592287b1123c5fc3807d6fed997e (diff) | |
download | vim-git-f3caeb63d62c08b579e9b5f40b35e8bf64dde87a.tar.gz |
patch 8.2.3050: cannot recognize elixir filesv8.2.3050
Problem: Cannot recognize elixir files.
Solution: Recognize Elixir-specific files. Check if an .ex file is Euphoria
or Elixir. (Austin Gatlin, closes #8401, closes #8446)
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/dist/ft.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim index 1ac74b578..ac8065911 100644 --- a/runtime/autoload/dist/ft.vim +++ b/runtime/autoload/dist/ft.vim @@ -172,6 +172,17 @@ func dist#ft#FTent() setf dtd endfunc +func dist#ft#ExCheck() + let lines = getline(1, min([line("$"), 100])) + if exists('g:filetype_euphoria') + exe 'setf ' . g:filetype_euphoria + elseif match(lines, '^--\|^ifdef\>\|^include\>') > -1 + setf euphoria3 + else + setf elixir + endif +endfunc + func dist#ft#EuphoriaCheck() if exists('g:filetype_euphoria') exe 'setf ' . g:filetype_euphoria |