Mercurial > vim
annotate src/msys32.bat @ 35956:11fc42b05554
runtime(javascript): fix a few issues with syntax higlighting
Commit: https://github.com/vim/vim/commit/ea76096fa98ac26c23703bffdc4d9b3dc8a94d7e
Author: Tobiasz Laskowski <tobil4sk@outlook.com>
Date: Wed Aug 14 14:50:56 2024 +0200
runtime(javascript): fix a few issues with syntax higlighting
It addresses the following issues:
- Fix highlight of let and var javascript keywords
According to runtime/doc/syntax.txt, Identifier is for variable names.
let/var are not variable names, they are keywords
- Add highlighting for "from" keyword in javascript
- Fix highlight of function keyword in javascript
According to docs, Function is for function names, so the function
keyword should just be Keyword.
- Fix highlight of static keyword in javascript
According to vim docs: StorageClass static, register, volatile, etc.
closes: #15480
Signed-off-by: Tobiasz Laskowski <tobil4sk@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 14 Aug 2024 15:00:07 +0200 |
parents | 78449866e9a9 |
children |
rev | line source |
---|---|
14222
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 @echo off |
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 rem To be used on MS-Windows for Msys2 with the 32 bit MinGW compiler. |
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 rem Adjust the "c:\msys64" part to match your installation. |
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 @echo on |
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 |
78449866e9a9
patch 8.1.0128: building with MinGW does not work out-of-the-box
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 set PATH=c:\msys64\mingw32\bin;c:\msys64\usr\bin;%PATH% |