mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Guess if .r is R or REBOL
.r is the default extension used widely for both, R and REBOL. This patch attempts to guess if .r is a REBOL file by looking for the following very common REBOL code fragments: - `REBOL` - `: func [` - `make object! [` - `context [` If any of those is found in a .r file, it is identified as a REBOL file. Otherwise the language for a .r file is R. Signed-off-by: Andreas Bolka <a@bolka.at>
This commit is contained in:
4
test/fixtures/hello-r.R
vendored
Normal file
4
test/fixtures/hello-r.R
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
hello <- function() {
|
||||
print("hello, world!")
|
||||
}
|
||||
hello()
|
||||
Reference in New Issue
Block a user