diff options
author | Christian Clason <christian.clason@uni-due.de> | 2021-09-11 12:59:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-11 12:59:30 +0200 |
commit | 521817ee76a17562a3b97dc47a277cf3a82fcd09 (patch) | |
tree | 7123ef146e0f8318a3972e32b9c5420e055ce896 /runtime/doc/syntax.txt | |
parent | 086631cd92d7b60f122963f9fd1779583b19004c (diff) | |
parent | c58a667e57d8dd84bbbd3ba1ddafb6a603b7b37b (diff) | |
download | rneovim-521817ee76a17562a3b97dc47a277cf3a82fcd09.tar.gz rneovim-521817ee76a17562a3b97dc47a277cf3a82fcd09.tar.bz2 rneovim-521817ee76a17562a3b97dc47a277cf3a82fcd09.zip |
Merge pull request #15619 from clason/vim-90df4b9d4234
vim-patch:90df4b9d4234
chore(vim-patch): add doc/vim9.txt to unwanted files
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index a8d8d7d9b8..572ce28b8d 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -1384,11 +1384,17 @@ To select syntax highlighting file for Euphoria, as well as for auto-detecting the *.e and *.E file extensions as Euphoria file type, add the following line to your startup file: > - :let filetype_euphoria = "euphoria3" + :let g:filetype_euphoria = "euphoria3" < or > - :let filetype_euphoria = "euphoria4" + :let g:filetype_euphoria = "euphoria4" + +Elixir and Euphoria share the *.ex file extension. If the filetype is +specifically set as Euphoria with the g:filetype_euphoria variable, or the +file is determined to be Euphoria based on keywords in the file, then the +filetype will be set as Euphoria. Otherwise, the filetype will default to +Elixir. ERLANG *erlang.vim* *ft-erlang-syntax* @@ -1406,6 +1412,22 @@ To enable highlighting some special atoms, put this in your vimrc: > :let g:erlang_highlight_special_atoms = 1 +ELIXIR *elixir.vim* *ft-elixir-syntax* + +Elixir is a dynamic, functional language for building scalable and maintainable +applications. + +The following file extensions are auto-detected as Elixir file types: + + *.ex, *.exs, *.eex, *.leex, *.lock + +Elixir and Euphoria share the *.ex file extension. If the filetype is +specifically set as Euphoria with the g:filetype_euphoria variable, or the +file is determined to be Euphoria based on keywords in the file, then the +filetype will be set as Euphoria. Otherwise, the filetype will default to +Elixir. + + FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax* FlexWiki is an ASP.NET-based wiki package available at http://www.flexwiki.com |