Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ New Languages:

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

Language improvements:

- enh(makefile): Add `make` as an alias (#2883) [tripleee][]

Grammar improvements:

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


## Version 10.4.0
Expand Down
2 changes: 1 addition & 1 deletion SUPPORTED_LANGUAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Languages that listed a **Package** below are 3rd party languages and are not bu
| LiveCode Server | livecodeserver | |
| LiveScript | livescript, ls | |
| Lua | lua | |
| Makefile | makefile, mk, mak | |
| Makefile | makefile, mk, mak, make | |
| Markdown | markdown, md, mkdown, mkd | |
| Mathematica | mathematica, mma, wl | |
| Matlab | matlab | |
Expand Down
3 changes: 2 additions & 1 deletion src/languages/makefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ export default function(hljs) {
name: 'Makefile',
aliases: [
'mk',
'mak'
'mak',
'make',
],
keywords: {
$pattern: /[\w-]+/,
Expand Down