Mercurial > vim
annotate runtime/ftplugin/less.vim @ 26083:a677aa897843 v8.2.3575
patch 8.2.3575: overflow check still fails when sizeof(int) == sizeof(long)
Commit: https://github.com/vim/vim/commit/e551ccfb9311eea5252d1c3106ff7a53c762d994
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 2 23:11:00 2021 +0000
patch 8.2.3575: overflow check still fails when sizeof(int) == sizeof(long)
Problem: Overflow check still fails when sizeof(int) == sizeof(long).
Solution: Use a float to check the result.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 03 Nov 2021 00:15:04 +0100 |
parents | 11d78e58a487 |
children |
rev | line source |
---|---|
6476 | 1 " Vim filetype plugin |
2 " Language: less | |
3 " Maintainer: Alessandro Vioni <jenoma@gmail.com> | |
4 " URL: https://github.com/genoma/vim-less | |
5 " Last Change: 2014 November 24 | |
6 | |
7 " Only do this when not done yet for this buffer | |
8 if exists("b:did_ftplugin") | |
9 finish | |
10 endif | |
11 let b:did_ftplugin = 1 | |
12 | |
13 let b:undo_ftplugin = "setl cms< def< inc< inex< ofu< sua<" | |
14 | |
15 setlocal formatoptions-=t formatoptions+=croql | |
16 | |
17 setlocal comments=:// commentstring=//\ %s | |
18 | |
19 setlocal omnifunc=csscomplete#CompleteCSS | |
20 setlocal suffixesadd=.less |