annotate runtime/ftplugin/sbt.vim @ 15555:d89c5b339c2a
v8.1.0785
patch 8.1.0785: depending on the configuration some functions are unused
commit https://github.com/vim/vim/commit/113e10721f42fc2500b63fe95193f8665658a90c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 20 15:30:40 2019 +0100
patch 8.1.0785: depending on the configuration some functions are unused
Problem: Depending on the configuration some functions are unused.
Solution: Add more #ifdefs, remove unused functions. (Dominique Pelle,
closes #3822)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 20 Jan 2019 15:45:07 +0100 |
parents |
d183d629509e |
children |
136d4922b40b |
rev |
line source |
11442
|
1 " Vim filetype plugin file
|
|
2 " Language: sbt
|
|
3 " Maintainer: Steven Dobay <stevendobay at protonmail.com>
|
|
4 " License: Same as Vim
|
|
5 " Last Change: 2017.04.30
|
|
6 " ----------------------------------------------------------------------------
|
|
7
|
|
8 if exists('b:did_ftplugin') || &cp
|
|
9 finish
|
|
10 endif
|
|
11
|
|
12 let b:did_ftplugin = 1
|
|
13
|
|
14 runtime! ftplugin/scala.vim
|
|
15
|