summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@stoeckmann.org>2025-09-03 20:26:42 +0200
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-09-03 22:44:54 +0300
commite771882a3c065cd956c01370623730865d3b6ae3 (patch)
tree86150368a6acfb258d1fc37c560c23b6938315ad /data
parent91ed5e92a9edd4d27ac1ae95528dc44a32aaa8ee (diff)
downloadmeson-e771882a3c065cd956c01370623730865d3b6ae3.tar.gz
Use https for mesonbuild.com
Since http://mesonbuild.com redirects to https://mesonbuild.com anyway, use https directly in documentation.
Diffstat (limited to 'data')
-rw-r--r--data/syntax-highlighting/vim/syntax/meson.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/syntax-highlighting/vim/syntax/meson.vim b/data/syntax-highlighting/vim/syntax/meson.vim
index a1679e0d7..905e9fe64 100644
--- a/data/syntax-highlighting/vim/syntax/meson.vim
+++ b/data/syntax-highlighting/vim/syntax/meson.vim
@@ -27,7 +27,7 @@ endif
let s:cpo_save = &cpo
set cpo&vim
-" http://mesonbuild.com/Syntax.html
+" https://mesonbuild.com/Syntax.html
syn keyword mesonConditional elif else if endif
syn keyword mesonRepeat foreach endforeach
syn keyword mesonOperator and not or in
@@ -54,7 +54,7 @@ syn match mesonEscape "\\N{\a\+\%(\s\a\+\)*}" contained
syn match mesonEscape "\\$"
" Meson only supports integer numbers
-" http://mesonbuild.com/Syntax.html#numbers
+" https://mesonbuild.com/Syntax.html#numbers
syn match mesonNumber "\<\d\+\>"
syn match mesonNumber "\<0x\x\+\>"
syn match mesonNumber "\<0o\o\+\>"