Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 460 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 460 Bytes

ose-language-highlight README

This extension only provides syntax highlight for .ose files in vscode.

let s:str = "HelloWorld!"

function s:Hello()
    echom s:str
endfunction
Package highlight

Class Main

" @accessible
function! s:Main() 
    echom "This is ose"
endfunc

UnitTest
function! s:TestMain() dict
    echom "Running Test"
    return 0
endfunc

based on vscode-viml