Mercurial > vim
annotate runtime/ftplugin/matlab.vim @ 28582:278a14b00896 v8.2.4815
patch 8.2.4815: cannot build with older GTK version
Commit: https://github.com/vim/vim/commit/d42b83942e6741de2bb630ee17a2e9fcc03d6b43
Author: Ernie Rael <errael@raelity.com>
Date: Sat Apr 23 19:52:23 2022 +0100
patch 8.2.4815: cannot build with older GTK version
Problem: Cannot build with older GTK version.
Solution: Use gtk_window_get_size() instead of gdk_window_get_width() and
gdk_window_get_height(). (Ernie Rael, closes #10257)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 23 Apr 2022 21:00:03 +0200 |
parents | 11b656e74444 |
children |
rev | line source |
---|---|
626 | 1 " Vim filetype plugin file |
2 " Language: matlab | |
3 " Maintainer: Jake Wasserman <jwasserman at gmail dot com> | |
25773 | 4 " Update By: Gabriel Dupras |
5 " Last Change: 2021 Aug 30 | |
6476 | 6 |
7 " Contributors: | |
8 " Charles Campbell | |
626 | 9 |
856 | 10 if exists("b:did_ftplugin") |
11 finish | |
626 | 12 endif |
13 let b:did_ftplugin = 1 | |
14 | |
15 let s:save_cpo = &cpo | |
16 set cpo-=C | |
17 | |
18 if exists("loaded_matchit") | |
25773 | 19 let s:conditionalEnd = '\%(\%(^\|;\)\s*\)\@<=end\>' |
6476 | 20 let b:match_words= |
25773 | 21 \ '\<\%(if\|switch\|for\|while\|try\)\>:\<\%(elseif\|case\|break\|continue\|else\|otherwise\|catch\)\>:' . s:conditionalEnd . ',' . |
6476 | 22 \ '\<function\>:\<return\>:\<endfunction\>' |
23 unlet s:conditionalEnd | |
626 | 24 endif |
25 | |
26 setlocal suffixesadd=.m | |
27 setlocal suffixes+=.asv | |
18186 | 28 setlocal commentstring=%\ %s |
626 | 29 |
18186 | 30 let b:undo_ftplugin = "setlocal suffixesadd< suffixes< commentstring< " |
626 | 31 \ . "| unlet! b:match_words" |
32 | |
33 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
856
diff
changeset
|
34 unlet s:save_cpo |