Skip to content

Commit 1166e68

Browse files
authored
enh(makefile) Add "make" alias (#2891)
- Closes #2883.
1 parent 7ae8127 commit 1166e68

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ New Languages:
44

55
- Added 3rd party Red & Rebol grammar to SUPPORTED_LANGUAGES (#2872) [Oldes Huhuman][]
66

7+
Language improvements:
8+
9+
- enh(makefile): Add `make` as an alias (#2883) [tripleee][]
10+
711
Grammar improvements:
812

913
- enh(vb) Large rework of VB.net grammar (#2808) [Jan Pilzer][]
@@ -19,6 +23,7 @@ Grammar improvements:
1923
[Jan Pilzer]: https://github.com/Hirse
2024
[Oldes Huhuman]: https://github.com/Oldes
2125
[Josh Goebel]: https://github.com/joshgoebel
26+
[tripleee]: https://github.com/tripleee
2227

2328

2429
## Version 10.4.0

SUPPORTED_LANGUAGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Languages that listed a **Package** below are 3rd party languages and are not bu
109109
| LiveCode Server | livecodeserver | |
110110
| LiveScript | livescript, ls | |
111111
| Lua | lua | |
112-
| Makefile | makefile, mk, mak | |
112+
| Makefile | makefile, mk, mak, make | |
113113
| Markdown | markdown, md, mkdown, mkd | |
114114
| Mathematica | mathematica, mma, wl | |
115115
| Matlab | matlab | |

src/languages/makefile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ export default function(hljs) {
6969
name: 'Makefile',
7070
aliases: [
7171
'mk',
72-
'mak'
72+
'mak',
73+
'make',
7374
],
7475
keywords: {
7576
$pattern: /[\w-]+/,

0 commit comments

Comments
 (0)