Changeset 2135
- Timestamp:
- Dec 7, 2012, 1:41:36 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/vimlol/vimlol.vim
r2114 r2135 5 5 """ http://lol.zoy.org/wiki/dev/setup/vim 6 6 """ 7 " 8 " 9 """ XXX: intentionally no empty lines because some versions of Vim 10 """ for Windows will be unable to parse them if a version control 11 """ system has added CRLF line endings. 12 " 13 " 7 8 14 9 """ 15 10 """ Add syntax highlighting for new C++ types 16 11 """ 17 " 12 18 13 " some custom base types 19 14 au Syntax cpp 20 15 \ syn keyword cType 21 16 \ half ldouble lldouble real uint 22 " 17 23 18 " GLSL types and the Lol Engine extensions 24 19 au Syntax cpp … … 38 33 \ i64vec2 i64cmplx i64vec3 i64vec4 i64quat i64mat2 i64mat3 i64mat4 39 34 \ u64vec2 u64cmplx u64vec3 u64vec4 u64quat u64mat2 u64mat3 u64mat4 40 " 35 41 36 " HLSL types 42 37 au Syntax cpp … … 44 39 \ int2 int3 int4 int2x2 int3x3 int4x4 45 40 \ float2 float3 float4 float2x2 float3x3 float4x4 46 " 47 " 41 42 48 43 """ 49 44 """ For now, pretend .lolfx is C++ 50 45 """ 51 46 au BufRead,BufNewFile *.lolfx let b:current_syntax = "cpp" 52 " 47
Note: See TracChangeset
for help on using the changeset viewer.