summaryrefslogtreecommitdiff
path: root/uvim/runtime/compiler/fbc.vim
diff options
context:
space:
mode:
Diffstat (limited to 'uvim/runtime/compiler/fbc.vim')
-rw-r--r--uvim/runtime/compiler/fbc.vim23
1 files changed, 0 insertions, 23 deletions
diff --git a/uvim/runtime/compiler/fbc.vim b/uvim/runtime/compiler/fbc.vim
deleted file mode 100644
index afedc32dff..0000000000
--- a/uvim/runtime/compiler/fbc.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-" Vim compiler file
-" Compiler: FreeBASIC Compiler
-" Maintainer: Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2024 Apr 03
-
-if exists("current_compiler")
- finish
-endif
-let current_compiler = "fbc"
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-CompilerSet makeprg=fbc
-CompilerSet errorformat=%-G%.%#Too\ many\ errors\\,\ exiting,
- \%f(%l)\ %tarning\ %n(%\\d%\\+):\ %m,
- \%E%f(%l)\ error\ %n:\ %m,
- \%-Z%p^,
- \%-C%.%#,
- \%-G%.%#
-
-let &cpo = s:cpo_save
-unlet s:cpo_save