Mercurial > vim
view runtime/compiler/scdoc.vim @ 26721:9c9b8d95b05f v8.2.3889
patch 8.2.3889: duplicate code for translating script-local function name
Commit: https://github.com/vim/vim/commit/e7f4abd38b6e05100c699900c8f87281e363beb2
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Fri Dec 24 20:47:38 2021 +0000
patch 8.2.3889: duplicate code for translating script-local function name
Problem: Duplicate code for translating script-local function name.
Solution: Move the code to get_scriptlocal_funcname(). (Yegappan Lakshmanan,
closes #9393)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 24 Dec 2021 22:00:03 +0100 |
parents | 29ec2c198c8d |
children | cd68a630f0d0 |
line wrap: on
line source
" scdoc compiler for Vim " Compiler: scdoc " Maintainer: Greg Anders <greg@gpanders.com> " Last Updated: 2019-10-24 if exists('current_compiler') finish endif let current_compiler = 'scdoc' if exists(':CompilerSet') != 2 command -nargs=* CompilerSet setlocal <args> endif CompilerSet makeprg=scdoc\ <\ %\ 2>&1 CompilerSet errorformat=Error\ at\ %l:%c:\ %m,%-G%.%#