Mercurial > vim
view runtime/ftplugof.vim @ 33856:32bc4c71f8a6 v9.0.2138
patch 9.0.2138: Overflow logic requires long long
Commit: https://github.com/vim/vim/commit/fda700cb04612fe2f9301a9ba820309175decabf
Author: Ernie Rael <errael@raelity.com>
Date: Thu Nov 30 18:20:00 2023 +0100
patch 9.0.2138: Overflow logic requires long long
Problem: Overflow logic requires long long
Solution: Define vimlong_T data type to make life easier
for porters
closes: #13598
Signed-off-by: Ernie Rael <errael@raelity.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 30 Nov 2023 18:30:03 +0100 |
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