Mercurial > vim
view runtime/autoload/freebasic.vim @ 28353:8bc8071928ed v8.2.4702
patch 8.2.4702: C++ scope labels are hard-coded
Commit: https://github.com/vim/vim/commit/3506cf34c17c5eae6c2d1317db1fcd5a8493c288
Author: Tom Praschan <13141438+tom-anders@users.noreply.github.com>
Date: Thu Apr 7 12:39:08 2022 +0100
patch 8.2.4702: C++ scope labels are hard-coded
Problem: C++ scope labels are hard-coded.
Solution: Add 'cinscopedecls' to define the labels. (Rom Praschan,
closes #10109)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 07 Apr 2022 13:45:04 +0200 |
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: