Mercurial > vim
view runtime/ftplugof.vim @ 34882:a3b37b1cae3a v9.1.0306
patch 9.1.0306: filetype: x11vnc config file is not recognized
Commit: https://github.com/vim/vim/commit/58ce78ad438deefec54fd6206166ca2794cd6efe
Author: Wu, Zhenyu <wuzhenyu@ustc.edu>
Date: Thu Apr 11 20:47:45 2024 +0200
patch 9.1.0306: filetype: x11vnc config file is not recognized
Problem: filetype: x11vnc config file is not recognized
Solution: Detect '.x11vncrc' as conf filetype
(Wu, Zhenyu)
See: https://linux.die.net/man/1/x11vnc
closes: #14511
Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 11 Apr 2024 21:00:03 +0200 |
parents | 4027cefc2aab |
children |
line wrap: on
line source
vim9script # Vim support file to switch off loading plugins for file types # # Maintainer: The Vim Project <https://github.com/vim/vim> # Last Change: 2023 Aug 10 # Former Maintainer: Bram Moolenaar <Bram@vim.org> if exists("g:did_load_ftplugin") unlet g:did_load_ftplugin endif # Remove all autocommands in the filetypeplugin group, if any exist. if exists("#filetypeplugin") silent! au! filetypeplugin * endif