view runtime/autoload/freebasic.vim @ 27488:07da466dcf6d v8.2.4272

patch 8.2.4272: Vim9 expr test fails without the channel feature Commit: https://github.com/vim/vim/commit/eb6c2765959c91ddbb527f96f91ba5be199b8d41 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 31 13:36:36 2022 +0000 patch 8.2.4272: Vim9 expr test fails without the channel feature Problem: Vim9 expr test fails without the channel feature. (Dominique Pell?) Solution: Remove "g:" before "CheckFeature". (closes #9671)
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Jan 2022 14:45:04 +0100
parents 5825405e4e2c
children 912224cab37f
line wrap: on
line source

" Vim filetype plugin file
" Language:	FreeBASIC
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2021 Mar 16

" Dialects can be one of fb, qb, fblite, or deprecated
" Precedence is forcelang > #lang > lang
function! freebasic#GetDialect() abort
  if exists("g:freebasic_forcelang")
    return g:freebasic_forcelang
  endif

  if exists("g:freebasic_lang")
    let dialect = g:freebasic_lang
  else
    let dialect = "fb"
  endif

  " override with #lang directive or metacommand

  let skip = "has('syntax_items') && synIDattr(synID(line('.'), col('.'), 1), 'name') =~ 'Comment$'"
  let pat = '\c^\s*\%(#\s*lang\s\+\|''\s*$lang\s*:\s*\)"\([^"]*\)"'

  let save_cursor = getcurpos()
  call cursor(1, 1)
  let lnum = search(pat, 'n', '', '', skip)
  call setpos('.', save_cursor)

  if lnum
    let word = matchlist(getline(lnum), pat)[1]
    if word =~? '\%(fb\|deprecated\|fblite\|qb\)'
      let dialect = word
    else
      echomsg "freebasic#GetDialect: Invalid lang, found '" .. word .. "' at line " .. lnum .. " " .. getline(lnum)
    endif
  endif

  return dialect
endfunction

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