Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 807 Bytes

README.md

File metadata and controls

48 lines (31 loc) · 807 Bytes

Vim Re:VIEW

Syntax highlighting, matching rules and mappings for Re:VIEW and extensions.

Supported Formats

https://github.com/kmuto/review/blob/v2-stable/doc/format.md

Sample

Sample

Support syntax highlight in code block with filetype

Usage

  • You can include multiple filetypes
let g:vim_review#include_filetypes = ['swift']

Supported operations

  • list
  • listnum
  • emlist
  • emlistnum
//list[sample][Sample][swift]{
class Sample {
  func say(message: String) {
    print(message)
  }
}
//}

Other usage

  • When explicitly specifying the syntax file
let g:vim_review#include_grouplists = {'swift': 'syntax/swift.vim'}