Mercurial > vim
annotate runtime/ftplugin/bash.vim @ 18520:6067fbb46625 v8.1.2254
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Commit: https://github.com/vim/vim/commit/0630bb6580237fe01db22a84885c10f12580f7af
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 4 22:52:12 2019 +0100
patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popup
Problem: MS-Windows: mouse scroll wheel doesn't work in popup.
Solution: Handle mouse wheel events separately. (closes https://github.com/vim/vim/issues/5138)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 04 Nov 2019 23:00:04 +0100 |
parents | 03b854983b14 |
children | 71cbad0921c9 |
rev | line source |
---|---|
15512 | 1 " Vim filetype plugin file |
2 " Language: bash | |
3 " Maintainer: Bram Moolenaar | |
4 " Last Changed: 2019 Jan 12 | |
5 " | |
6 " This is not a real filetype plugin. It allows for someone to set 'filetype' | |
7 " to "bash" in the modeline, and gets the effect of filetype "sh" with | |
8 " b:is_bash set. Idea from Mahmode Al-Qudsi. | |
9 | |
10 if exists("b:did_ftplugin") | |
11 finish | |
12 endif | |
13 | |
18186 | 14 unlet! b:is_sh |
15 unlet! b:is_kornshell | |
15512 | 16 let b:is_bash = 1 |
17 | |
18186 | 18 runtime! ftplugin/sh.vim ftplugin/sh_*.vim ftplugin/sh/*.vim |
15512 | 19 |
18186 | 20 " vim: ts=8 |