annotate runtime/ftplugin/sbt.vim @ 13927:ec54a202ad0c
v8.0.1834
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
commit https://github.com/vim/vim/commit/518bc174ed34dc79303488914aaaa3c238a85080
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 13 17:05:30 2018 +0200
patch 8.0.1834: GUI: find/replace dialog does not handle some chars
Problem: GUI: find/replace dialog does not handle some chars properly.
Solution: Escape '?' when needed. Always escape backslash. (closes https://github.com/vim/vim/issues/2418,
closes #2435)
author |
Christian Brabandt <cb@256bit.org> |
date |
Sun, 13 May 2018 17:15:05 +0200 |
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
|