File: modula2.vim

package info (click to toggle)
neovim 0.10.4-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 63,144 kB
  • sloc: ansic: 255,334; python: 1,470; lisp: 1,213; sh: 1,103; makefile: 363; xml: 78; ruby: 6
file content (31 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
" Vim filetype plugin file
" Language:	Modula-2
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2024 Jan 04

" Dialect can be one of pim, iso, r10
function modula2#GetDialect() abort

  if exists("b:modula2.dialect")
    return b:modula2.dialect
  endif

  if exists("g:modula2_default_dialect")
    let dialect = g:modula2_default_dialect
  else
    let dialect = "pim"
  endif

  return dialect
endfunction

function modula2#SetDialect(dialect, extension = "") abort
  if exists("b:modula2")
    unlockvar! b:modula2
  endif

  let b:modula2 = #{ dialect: a:dialect, extension: a:extension }
  lockvar! b:modula2
endfunction

" vim: nowrap sw=2 sts=2 ts=8 noet fdm=marker: