Mercurial > vim
view runtime/compiler/cm3.vim @ 32576:5d32f2d42a6b v9.0.1620
patch 9.0.1620: Nix files are not recognized from the hashbang line
Commit: https://github.com/vim/vim/commit/19548c6a742d954ecd0b50b0680c37cc6ced7473
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jun 8 21:27:13 2023 +0100
patch 9.0.1620: Nix files are not recognized from the hashbang line
Problem: Nix files are not recognized from the hashbang line.
Solution: Add a hashbang check. (issue https://github.com/vim/vim/issues/12507)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 08 Jun 2023 22:30:04 +0200 |
parents | 9f41bfdbc6fc |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Critical Mass Modula-3 Compiler " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2021 Apr 08 if exists("current_compiler") finish endif let current_compiler = "cm3" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo&vim " TODO: better handling of Quake errors CompilerSet makeprg=cm3 CompilerSet errorformat=%D---\ building\ in\ %f\ ---, \%W\"%f\"\\,\ line\ %l:\ warning:\ %m, \%E\"%f\"\\,\ line\ %l:\ %m, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save