Further "Idris" -> "Idris 2" renamings were done

This commit is contained in:
Denis Buzdalov 2020-05-19 18:32:37 +03:00
parent b057b734aa
commit 874495a339
5 changed files with 17 additions and 17 deletions

View file

@ -1,7 +1,7 @@
" syntax highlighting for idris (idris-lang.org)
" syntax highlighting for Idris 2 (idris-lang.org)
"
" Heavily modified version of the haskell syntax
" highlighter to support idris.
" highlighter to support Idris 2.
"
" author: raichoo (raichoo@googlemail.com)

View file

@ -1,7 +1,7 @@
" Vim syntax file
" Language: Literate Idris
" Maintainer: Idris Hackers (https://github.com/idris-hackers/idris-vim)
" Last Change: 2014 Mar 4
" Language: Literate Idris 2
" Maintainer: Idris Hackers (https://github.com/edwinb/idris2-vim)
" Last Change: 2020 May 19
" Version: 0.1
"
" This is just a minimal adaption of the Literate Haskell syntax file.
@ -9,9 +9,9 @@
" Read Idris highlighting.
if version < 600
syntax include @idrisTop <sfile>:p:h/idris.vim
syntax include @idrisTop <sfile>:p:h/idris2.vim
else
syntax include @idrisTop syntax/idris.vim
syntax include @idrisTop syntax/idris2.vim
endif
" Recognize blocks of Bird tracks, highlight as Idris.
@ -19,4 +19,4 @@ syntax region lidrisBirdTrackBlock start="^>" end="\%(^[^>]\)\@=" contains=@idri
syntax match lidrisBirdTrack "^>" contained
hi def link lidrisBirdTrack Comment
let b:current_syntax = "lidris"
let b:current_syntax = "lidris2"