Mercurial > vim
view runtime/ftplugof.vim @ 33448:a8158a496896 v9.0.1978
patch 9.0.1978: No filetype detection for just files
Commit: https://github.com/vim/vim/commit/3d90f71b764e67b1eb12fc6a9a4b9e2fca6dc087
Author: dundargoc <gocdundar@gmail.com>
Date: Wed Oct 4 19:52:54 2023 +0200
patch 9.0.1978: No filetype detection for just files
Problem: No filetype detection for just files
Solution: Detect just files (*.just, justfile, etc)
closes: #13271
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: dundargoc <gocdundar@gmail.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 04 Oct 2023 20:00:08 +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