annotate runtime/ftplugin/tmux.vim @ 30831:fbeebe308514
v9.0.0750
patch 9.0.0750: crash when popup closed in callback
Commit: https://github.com/vim/vim/commit/0abd6cf62d65180dc2c40d67cd95f13b0691f7ea
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Oct 14 17:04:09 2022 +0100
patch 9.0.0750: crash when popup closed in callback
Problem: Crash when popup closed in callback. (Maxim Kim)
Solution: In syntax_end_parsing() check that syn_block is valid.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 14 Oct 2022 18:15:03 +0200 |
parents |
3b34837f4538 |
children |
|
rev |
line source |
11062
|
1 " Vim filetype plugin file
|
11160
|
2 " Language: tmux(1) configuration file
|
|
3 " URL: https://github.com/ericpruitt/tmux.vim/
|
|
4 " Maintainer: Eric Pruitt <eric.pruitt@gmail.com>
|
|
5 " Last Changed: 2017 Mar 10
|
11062
|
6
|
|
7 if exists("b:did_ftplugin")
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_ftplugin = 1
|
|
11
|
25973
|
12 let b:undo_ftplugin = "setlocal comments< commentstring<"
|
|
13
|
|
14 setlocal comments=:#
|
11062
|
15 setlocal commentstring=#\ %s
|