annotate runtime/ftplugin/poefilter.vim @ 31135:759b181807f7
v9.0.0902
patch 9.0.0902: some mouse scroll code is not in a good place
Commit: https://github.com/vim/vim/commit/696d0a86250636602d42e29e57d8923f538e0549
Author: Christopher Plewright <chris@createng.com>
Date: Fri Nov 18 17:53:34 2022 +0000
patch 9.0.0902: some mouse scroll code is not in a good place
Problem: Some mouse scroll code is not in a good place.
Solution: Refactor the code. (Christopher Plewright, closes https://github.com/vim/vim/issues/11561)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 18 Nov 2022 19:00:05 +0100 |
parents |
3295247d97a5 |
children |
|
rev |
line source |
30875
|
1 " Vim filetype plugin
|
|
2 " Language: PoE item filter
|
|
3 " Maintainer: ObserverOfTime <chronobserver@disroot.org>
|
|
4 " Last Change: 2022 Oct 07
|
|
5
|
|
6 if exists('b:did_ftplugin')
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setlocal comments=:# commentstring=#\ %s
|
|
12
|
|
13 let b:undo_ftplugin = 'setl com< cms<'
|