Juan Francisco Cantero Hurtado
a2d83132ca
Raku syntax: Fix strings and comments ( #2311 )
...
* Raku syntax: Fix strings and comments
Problematic code:
my @array1 = [
"'", "a", "b"
];
my @array2 = [
'"', 'a', 'b'
];
my @array3 = [
"#", "a", "b"
];
I deleted "default" because it was breaking comments with urls after
of my changes.
Some parts were taken from:
https://github.com/hankache/raku.nanorc/blob/master/raku.nanorc
* Raku syntax: fix strings
Code:
sub xyz(Str is encoded('utf8')) returns int32 is native('asdf') { * }
sub xyz(Str is encoded("utf8")) returns int32 is native("asdf") { * }
From python3.yaml
2021-12-31 17:42:21 -05:00
Juan Francisco Cantero Hurtado
fd20fc8837
Fix the syntax for Raku variables. ( #2309 )
...
The current version has problems with the last argument and the
brackets in this code:
sub myfunction(Int $x1, Int $x2){
}
Taken from:
https://github.com/hankache/raku.nanorc/blob/master/raku.nanorc
2021-12-21 23:47:31 -05:00
Jake Leahy
c442d7030d
Fix edge case when comment is at start of line ( #2237 )
2021-12-05 17:45:10 -08:00
antonl05
6998cb5602
add more types for nim ( #2284 )
2021-11-22 22:41:04 -08:00
abaldota
d023aef6b5
Python syntax: multiline string should be constant.string, not comment ( #2268 )
...
* Python syntax: multiline string should be comment.string, not comment
''' delimits multiline strings, not comments
* Python syntax: multiline string should be comment.string, not comment
''' delimits multiline strings, not comments
* Update python3.yaml for python3.10 keywords
2021-11-14 21:54:56 -08:00
TogoorooDev
395bfc2307
Syntax Highlighting Support for FreeBSD Kernel Configuration Files ( #2220 )
...
* added FreeBSD kernel configuration file format
* updated format, notably to highlight the word 'include'
2021-09-24 14:39:46 -07:00
Zachary Yedidia
fe3186ba9d
Ignore tool files
2021-08-21 18:07:43 -04:00
Zachary Yedidia
7a1ba01621
Merge branch 'patch-3' of https://github.com/pyfisch/micro into pyfisch-patch-3
2021-08-06 20:44:57 -04:00
riley
2b8cd6b758
Highlight racket files as lisp ( #1931 )
...
Add syntax highlighting for [racket](racket-lang.org), a (variant of scheme which is a) variant of lisp which uses the .rkt extension.
2021-08-06 20:38:22 -04:00
AAAA
cbe339da07
Update v.yaml ( #1925 )
...
Improvements:
- Use proper scope names for better colorization
- Better regex to detect binary, octal, decimal and hexadecimal numbers
- Extend some definitions based on the Vlang docs
Co-authored-by: AAAA <dev@onerbs.com>
2021-08-06 20:37:42 -04:00
Zachary Yedidia
e290ce2de5
Fixes for syntax and docs
...
Fixes #2163
Ref #2173
2021-08-03 00:07:14 -04:00
pyfisch
6e1fe5b301
More precise filename detection for shell scripts
...
Make the regular expression much more precise:
* match literal dots instead of any char (match rc.conf but not rcXconf)
* match special filenames exactly (match PKGBUILD but not myPKGBUILD.something)
Run build-all to update internal/config/runtime.go
closes #2163
2021-07-21 22:09:46 +02:00
pyfisch
84a490f14c
Update rust syntax: don't highlight lifetimes ( #2164 )
...
Work-around rust lifetimes and character literals both using single quotes.
2021-07-21 15:02:28 -04:00
pyfisch
42a9302636
Update rust syntax: char literal ( #2162 )
...
Highlight character literals started with a single quote (').
Importantly this ensures correct highlighting for the character literal '"'.
Limitation: rust char literals contain exactly one character, however this isn't checked by the highlighter.
Closes #2160
2021-07-21 12:37:41 -04:00
vandervoortj
9ceb69921a
Add nix language syntax ( #2024 )
...
* Create nix.yaml
Add nix language syntax
* Add nix-linter
2021-06-15 17:56:31 -04:00
Rosetta H&S
b66ec2bf7a
Add highlighting for user-defined types ( #2107 )
...
* Added highlighting for user-defined types
Provides automatic highlighting of user-defined types ending with either "_t" or "_T", as is seen in editors such as Nano, or within GitHub itself.
* Update cpp.yaml
2021-06-01 19:33:40 -04:00
Héctor M. Monacci
2dc2cabe0e
Dont take # as comment when preceded by backslash ( #2112 )
...
When escaped with a backslash (e.g., inside a regex) the numeral char, ```#```, shouldn't be interpreted as a beginning of comment.
2021-06-01 19:33:06 -04:00
Zachary Yedidia
56c7744e23
Fix erlang comment syntax
2021-05-31 20:26:32 -04:00
Alex Tsantilis
f1aaa30743
Update and rename perl6.yaml to raku.yaml ( #1927 )
...
The language has been renamed but still aims to support the old file extensions for a time.
2021-04-07 16:21:19 -04:00
Laszlo Gombos
9ed3525076
Improve patch file detection by adding a header rule. ( #1942 )
2021-04-07 16:20:57 -04:00
Zachary Yedidia
975e78d9c0
Remove conf highlighting (too many conflicts)
...
Fixes #2031
The conf highlighter interferes with many more specific highlighters and
doesn't provide much value on its own.
2021-02-20 14:27:58 -05:00
relrelb
6c694a1db4
Improve C syntax highlighting ( #2015 )
2021-02-17 22:28:19 -05:00
Nikolay Korotkiy
261eb41912
Add Gemini syntax file ( #2016 )
2021-02-17 22:27:56 -05:00
Sebastian Kolind Sørensen
d7abc8f100
Add .tsx support for Typescript syntax ( #2021 )
...
* Update to look for tsx files also
* Shorten filename detection
2021-02-17 22:27:45 -05:00
Peter Kramarik
fcc2fea684
fix vue syntax highlight ( #1982 )
2021-01-08 17:06:49 -05:00
Marduk Bolaños
84f7248943
Added multiline strings to the Scala syntax highlighter ( #1969 )
...
In Scala multiline strings are constructed just like in Python
```
val message = """
This
is
a
message
"""
2021-01-05 19:59:28 -05:00
a11ce
1e5f8c020e
Highlight 0 as a constant number in python3
2020-12-15 18:57:28 -05:00
Marduk Bolaños
3d683b27f7
.sbt files also contain Scala code
...
The Scala Build Tool sbt uses Scala as configuration language.
2020-11-11 09:58:10 +01:00
XeroOl
b2620eb68c
update lua.yaml ( #1892 )
...
added `break` as a keyword
2020-10-16 01:44:48 -04:00
Zachary Yedidia
cfcb2e4577
Update runtime
2020-10-06 17:39:20 -04:00
ThatXliner
c0907bb58e
✏️ : Added more Code tags ( #1875 )
...
I added more syntax highlighting for python comment code tags. Though this should be implemented for all languages...
2020-10-06 16:56:08 -04:00
Ryan Westlund
e8ba143144
Fix Crystal syntax highlighting ( #1844 )
...
Don't highlight things that don't exist, add some missing keywords,
highlight true/false/nil as constants instead of keywords, and
highlight types as types instead of constants.
2020-09-17 23:20:28 -04:00
MasFlam
e0dc018f66
Fix some left-over details in C++ syntax highlighting ( #1865 )
...
- move type cast keywords into operators, since that's their syntactic function
- fix a single dot being matched as a constant.number
- add the missing caret operator
2020-09-17 23:19:41 -04:00
MasFlam
cf63a68c8b
groovy highlight ( #1866 )
2020-09-17 23:19:32 -04:00
Ertu (Er2, Err)
6dd92faf1a
coffeescript syntax fix ( #1861 )
2020-09-16 00:06:40 -04:00
MasFlam
8df921cf96
Overall syntax highlighting improvements for C++ ( #1858 )
...
* Overall syntax highlighting improvements for C++
Most of these changes are based on the information on cppreference.com;
specifically from here: https://en.cppreference.com/w/cpp/keyword
- made `identifier` actually match any identifier
- add ~ as an operator
- add `static_assert` as a keyword (statement)
- add keywords that are interchangeable with operators as operators
- add keywords `sizeof`, `alignof` and `typeid` as operators
- add the quasi-keywords `asm`, `fortran` and `final`, `override`
- add the keyword `nullptr`
- add `_Pragma` as a preprocessor keyword
- add C++20 (concepts and modules) -related keywords
- add casting keywords
- add the keyword (specifier) `noexcept`
- remove `nothrow` (because it's not any more special than `vector` is)
- add `wchar_t` and `charXX_t` types
- add cv type keywords as `type.keyword`s
- move some fitting keywords into `type.keywords`
(mostly because they appear in/near type signatures etc.)
I didn't include coroutine-related language features,
primarily because there is no good source of information
about them other than the ISO C++ standard.
* Further changes to C++ syntax highlighting
- reverted the changes to the `identifier` regex, since most
colorschemes color it the same as `type`s and/or `statement`s
- fix the 2nd `type` regex (the word boundaries were in only two pipe-options)
- move `nullptr` back into `constant.bool`,
since it looks better in-editor this way (imo)
- add `?` as an operator
- add regexes that match all the correct number literals, and nothing else
(see https://en.cppreference.com/w/cpp/language/floating_literal )
(that is, if I haven't made a mistake)
2020-09-14 00:06:47 -04:00
Peder B. Sundt
5bee7272e9
Add improvements to the python3 syntax definitions ( #1833 )
...
* Python3: Add built-in object 'cls'
* Python3: Add the bitwise negation operator ~
* Python3: Add support for hexadeximal and binary numerical literals
* Python3: Rewrite '(__foo__|__bar__)' as '__(foo|bar)__', add known '__i.*__' methods
* Python3: Add __iter__ as a magic method, sort the list of magic methods
* Python3: Numerical literals: Add support for '_', disallow leading 0 for decimals
* fixup! Python3: Numerical literals: Add support for '_', disallow leading 0 for decimals
hex oct and bin have different sets of allowed digits
* Python3: Add support for floating point numbers with optional scientific notation
* Python3: stop single-line strings at EOL
* Python3: Add support for TODO and FIXME in comments
* Python3: Add support for the ^ bitwise xor operator
2020-08-23 15:46:27 -04:00
Ryan Westlund
c6d04220be
Highlight static as keyword in Javascript files ( #1824 )
2020-08-14 16:56:55 -04:00
Ryan Westlund
a87370b111
Improve Rust syntax highlighting ( #1820 )
2020-08-11 21:39:57 -04:00
Robin Voetter
626b08e991
Improve Zig syntax definitions ( #1814 )
...
* Improve Zig syntax definitions
* Remove duplicate definition of constant.number
* Make undefined a constant
2020-08-05 19:39:03 -04:00
Jakob Nybo Nissen
697751d5f6
Allow Julia multiline strings and comments ( #1813 )
2020-08-05 19:38:29 -04:00
Ryan Westlund
1f27f51f9a
Add syntax support for Renpy ( #1789 )
2020-07-22 15:26:37 -04:00
Ján Priner
ddc887f6e4
Highlight multicharacter escape sequences in C and C++ string literals ( #1761 )
2020-07-08 00:17:48 -04:00
Zachary Yedidia
977290d77b
Improve php string highlighting
...
Fixes #1753
2020-07-01 23:38:47 -04:00
Ryan Westlund
e946d9eddf
Improve Haskell syntax highlighting ( #1745 )
2020-06-26 17:53:43 -04:00
Zachary Yedidia
db1df05017
Support month and day names in crontab syntax
...
Ref #1739
2020-06-24 16:33:22 -04:00
Zachary Yedidia
05cbc310f3
Use boundaries in cron syntax rules
...
Fixes #1739
2020-06-24 16:00:56 -04:00
Ryan Westlund
006165230d
python.yaml: add async as a keyword ( #1713 )
...
await is already a keyword, but async is not.
2020-06-08 13:45:05 -04:00
Chloe Kudryavtsev
07860b8973
Add mksh to the set of supported shells ( #1703 )
2020-06-03 13:30:42 -04:00
pyfisch
381e1b639d
Rewrite TOML syntax file ( #1681 )
2020-05-26 14:10:27 -04:00
Shinichi TAMURA
cc09712d14
set bash-fc file's syntax as shell ( #1679 )
...
* set bash-fc file's syntax as shell
* remove dups from shell file matcher
2020-05-24 23:50:30 -04:00
Zachary Yedidia
30395b1f67
Remove outdated c++ highlighter
...
Fixes #1652
2020-05-14 21:37:19 -04:00
Indiana Kernick
f52fbfa1f0
Add .inl as a C++ file extension ( #1630 )
2020-04-29 20:01:59 -04:00
Some person
0f984131fb
Update coffeescript.yaml ( #1571 )
...
* Update coffeescript.yaml
We need much much more modern coffeescript standards, the current one has broken `0x123456` (hex) and single quotes, and doesn't support multiline comments. This PR aims to fix that. I'm no regexp expert, I just based this off JS', so tell me if I did anything wrong.
* Update coffeescript.yaml
2020-04-22 23:12:56 -04:00
trrbl
ffd7b5c770
Support csharp-script syntax. ( #1425 )
...
```
#!/usr/bin/env dotnet-script
// Set Runtime
#! "netcoreapp3.0"
// Imports
#load "myAssembly.dll"
#r "nuget:CliWrap,2.5.0"
```
This syntax file basically imports the `csharp` rules and adds it's custom pre-processors.
2020-04-10 13:57:36 -04:00
Ján Jančár
bd8c0d25c8
Add sagemath syntax highlight based on python3. ( #1227 )
2020-04-09 12:20:48 -04:00
Nikita Bobko
92f4cb7ef7
Clarify regex for git commit --verbose
( #1606 )
2020-04-05 14:04:36 -04:00
Zachary Yedidia
1cf9537340
Fix python3 syntax file and make python3 default
...
The python3 syntax had "filename" instead of "filetype"
as the header. This commit also makes standard py extensions
use the python3 highlighting and requires .py2 or a python2
env to use python2 highlighting because python3 is the standard
python now.
Fixes #1592
2020-03-24 11:42:23 -04:00
Koki Fushimi
26930ca81f
Better Julia syntax. ( #1567 )
...
* Fix regex syntax and change to match one or more spaces.
* Add constant `nothing` and `missing`.
* Add Inf and NaN to constant numbers.
2020-03-24 10:59:48 -04:00
Andrew Havens
a19cd2e6d0
Add support for Fastlane and Cocoapods file syntax highlighting ( #1544 )
2020-03-02 20:03:28 -05:00
Zachary Yedidia
743d42e417
Syntax file change
2020-02-13 16:50:44 -05:00
Zachary Yedidia
feaf3951d2
Update haskell syntax file
2020-02-11 19:13:36 -05:00
Zachary Yedidia
185b8de17b
Merge branch 'issue_1008' of https://github.com/sum01/micro into sum01-issue_1008
2020-02-10 14:59:31 -05:00
Zachary Yedidia
00205aa6a7
Update readme
2020-02-10 00:38:57 -05:00
Indiana Kernick
e561952781
Add jsonnet syntax file ( #1320 )
2020-02-09 00:23:49 -05:00
Tommy
9fe58bf84f
csharp bracket highlighting problem #1172 ( #1199 )
2020-02-09 00:21:27 -05:00
Zachary Yedidia
e84f85340b
Merge
2020-02-09 00:19:21 -05:00
Zachary Yedidia
0962e1bfba
Merge branch 'master' of https://github.com/Paalon/micro into Paalon-master
2020-02-09 00:19:02 -05:00
Zachary Yedidia
2f45644d14
Merge pull request #1324 from konsumer/master
...
add support for input and scalar defintiions (for graphql-tools schema)
2020-02-09 00:18:09 -05:00
Zachary Yedidia
c2a2316c28
Merge pull request #1321 from zonuexe/add/php-fn-keyword
...
Add `fn` keyword (arrow function) added in PHP 7.4 to coloring
2020-02-09 00:17:41 -05:00
Zachary Yedidia
6957e83cdb
Merge pull request #1333 from the-sushi/patch-1
...
Add Forth highlighting
2020-02-09 00:17:24 -05:00
Zachary Yedidia
b0c50d371f
Merge pull request #1423 from caligari87/patch-1
...
Add ZScript language highlighting
2020-02-07 20:18:05 -05:00
Zachary Yedidia
69b6c724fc
Merge pull request #1252 from SunflowerFuchs/patch-1
...
Update zsh.yaml
2020-02-07 20:03:53 -05:00
Zachary Yedidia
31936358c1
Merge pull request #1264 from krerkkiat/issue-1237
...
Update sh.yaml
2020-02-07 20:03:22 -05:00
Rein F
1e998ab0e4
Updated javascript.yaml syntaf file
2020-01-18 19:05:33 +01:00
Zachary Yedidia
fa4103f7aa
Merge
2020-01-15 20:09:33 -05:00
Zachary Yedidia
17f0eb80cd
Readonly should only apply to default buffers
...
Ref #1298
2020-01-15 20:09:17 -05:00
Krerkkiat Chusap
be34e1241c
Update julia.yml ( #1262 )
...
Add export to the keywords. This should fixes zyedidia/micro#1215 .
2020-01-11 13:41:52 -05:00
Zachary Yedidia
7c90f4d6f1
Merge
2020-01-06 12:29:39 -05:00
Zachary Yedidia
61a90f7666
Update xml.yaml
2020-01-06 12:29:33 -05:00
Serge Voilokov
8d373cde6e
Add golang keywords ( #1455 )
...
* Add golang keywords
* Update runtime
2020-01-06 12:06:44 -05:00
Zachary Yedidia
e98be1a1e5
Update deps
2020-01-01 20:44:45 -05:00
Zachary Yedidia
604d78de0f
Merge pull request #1327 from Osmose/git-commit-diff
...
Fix #1314 : Add support for diffs from `git commit --verbose`.
2019-12-30 14:43:50 -05:00
Zachary Yedidia
9e8420aab5
Merge pull request #1437 from serebit/patch-2
...
Enable syntax highlighting for Kotlin script files
2019-12-30 14:42:48 -05:00
Zachary Yedidia
93431a9ddf
Merge branch 'fix-xml-highlighting' of https://github.com/ariasuni/micro into ariasuni-fix-xml-highlighting
2019-12-30 14:40:41 -05:00
Zachary Yedidia
532f932712
Merge branch 'master' into patch-1
2019-12-30 14:24:27 -05:00
Zachary Yedidia
eeeb927a1d
Merge pull request #1361 from Lisiadito/master
...
fix #1318 . fix html comments and make them work multiline
2019-12-30 14:23:27 -05:00
Zachary Yedidia
f9ce549663
Merge pull request #1287 from didactic-drunk/ruby_syntax
...
Ruby syntax improvements.
2019-12-30 14:23:06 -05:00
Zachary Yedidia
e420872a27
Merge branch 'master' into highlight-nimscript
2019-12-30 14:22:22 -05:00
Zachary Yedidia
cef32d4ac7
Merge pull request #1315 from matbesancon/patch-1
...
Update julia.yaml
2019-12-30 14:21:20 -05:00
Zachary Yedidia
35375a6ea2
Merge pull request #1406 from LeapofAzzam/LeapofAzzam-patch-1
...
Update vi syntax
2019-12-30 14:20:27 -05:00
Zachary Yedidia
60eec0eccd
Merge pull request #1412 from tommyshem/batSyntaxHighlighting
...
Add windows .bat syntax highlighting file #1388
2019-12-30 14:20:13 -05:00
Zachary Yedidia
97665573c7
Merge pull request #1426 from Nergel3/master
...
vue syntax (+typescript) & svelte syntax
2019-12-30 14:19:59 -05:00
Zachary Yedidia
f874377573
add system verilog syntax file
2019-12-30 14:05:06 -05:00
Delyan Angelov
e1c1e402a9
Add V syntax highlighting.
...
V is a new general purpose language, inspired mainly by Go, Rust, Pascal and C.
Main site: https://vlang.io/
Github: https://github.com/vlang/v
2019-12-30 16:13:15 +02:00
Zachary Yedidia
bd83c6a8a9
Remove detect requirement and detect in jinja file
...
Ref #1415
2019-12-28 22:27:44 -05:00
Zachary Yedidia
8663014bbe
Add support for syntax headers and update tcell
2019-12-28 18:53:51 -05:00
Campbell Jones
da32457037
Enable syntax highlighting for Kotlin script files
...
In addition, make the following changes to the kotlin syntax highlighting:
- Add new unsigned types to type.storage
- Add const as a statement keyword
- Remove typeof from type keywords
2019-12-26 19:13:23 -05:00
Zachary Yedidia
d9735e5c3b
Update readme
2019-12-25 16:17:31 -05:00
Zachary Yedidia
f932cfb7f1
Merge pull request #1409 from serge-v/syntax
...
Add mc, godoc, proto syntax files
2019-12-19 10:05:38 -05:00
Zachary Yedidia
8817d711b9
Merge pull request #1415 from dullbananas/master
...
Improve syntax files
2019-12-19 10:05:30 -05:00
nergel3
5d81fc7815
vue syntax (+typescript) & svelte syntax
2019-12-17 11:38:22 +01:00
Sterling Parker
0827968f6b
Create zscript.yaml
2019-12-04 11:52:22 -07:00
Johann Mortara
5b869cb836
Corrected tex comment start separator
2019-11-29 12:05:54 +01:00
ariasuni
2d475fbca8
Remove unreliable XML entity handling from XML syntax
2019-11-27 17:39:31 +01:00
ariasuni
36862137db
Improve XML character entities highlighting and comment
2019-11-27 14:54:53 +01:00
ariasuni
34c12e1282
Fix XML character entities (e.g. <) highlighting
2019-11-27 14:54:53 +01:00
ariasuni
8b0c858f28
Make XML highlighting more fine-grained
2019-11-27 14:54:53 +01:00
ariasuni
daa0d67c6f
Fix XML highlighting when tags are spread on multiple lines
2019-11-27 14:54:53 +01:00
ariasuni
aaac5466d1
Set XML filetype for .svg and files with xml version tag
2019-11-27 14:54:53 +01:00
Dull Bananas
166e227c9f
Merge branch 'master' into master
2019-11-15 18:46:13 -07:00
Dull Bananas
7d1dc1183c
Improve JavaScript syntax
2019-11-15 18:42:17 -07:00
Dull Bananas
4662f0c500
Remove old code
2019-11-15 18:38:33 -07:00
Dull Bananas
78fd9fb225
Add jinja syntax
2019-11-15 18:37:41 -07:00
tommyshem
be0dcd5d10
Add windows .bat syntax highlighting file #1388
2019-11-14 01:11:02 +00:00
Serge Voilokov
1857aa4067
Add proto syntax file
2019-11-06 07:23:04 -05:00
Serge Voilokov
1fc5b316ab
Add mc, godoc syntax files
2019-11-05 22:57:36 -05:00
Leap of Azzam
9e0d3c7cbe
Update vi syntax
2019-10-26 15:51:38 +07:00
Elliot Thomas
f12061ea88
ES6 - ES2019 additions
...
symbol.operator: Spread/rest operator.
statement: Generator function, Promise resolve and reject.
type: New built-in types, including section for TypedArrays.
constant.string: Template literal.
2019-10-02 09:50:46 +01:00
Patrick Weingaertner
523592be26
fix #1318 . fix html comments and make them work multiline
2019-09-05 09:41:35 +02:00
Zachary Yedidia
1c4e2eb09f
Merge pull request #1356 from dullbananas/master
...
Add missing keywords for Python syntax
2019-07-25 19:58:08 -07:00
Patrick Weingärtner
c11af1c19c
( #1358 ) add vue single-file component syntax highlighting ( #1359 )
...
* add vue single-file component syntax highlighting
* remove unnecessary new line
2019-07-25 19:57:53 -07:00
Patrick Weingaertner
3a4bdb0db6
add TODO to JS highlighting
2019-07-25 23:22:15 +02:00
Antonino Siena
73093f9497
Added Ziglang syntax support ( #1354 )
...
* Added Ziglang syntax support
* Removed unused constant string markup
* Added 'fn' as keyword
* Added constant matching ending with numbers and proper hexadecimal matching
* Added missing types
* Added all keywords in alphabetical order
2019-07-06 01:51:12 -04:00
Zachary Yedidia
3644ef4a5a
Merge pull request #1353 from jakobnissen/master
...
Updated Julia number and string syntax highlighting
2019-07-06 01:50:58 -04:00
Zachary Yedidia
8b4943fc26
Merge pull request #1352 from Akito13/master
...
Additional file extensions
2019-07-06 01:50:46 -04:00
Zachary Yedidia
a90b17c855
Merge pull request #1331 from corbuntus/master
...
Dlang character syntax highlighting
2019-07-06 01:50:28 -04:00
Dull Bananas
9ec07b595b
Add missing keywords for Python syntax
2019-07-03 16:53:53 -07:00
Jakob Nybo Nissen
9bfc35656c
Updated Julia number and string syntax highlighting
2019-07-01 12:47:16 +02:00
Akito13
b2b933c6c1
Additional file extensions
...
* Added support for Nimscript files
2019-07-01 03:30:58 +02:00
Ender - Josh Pritsker
612ebb2e17
Add Forth highlighting
2019-05-25 21:01:24 -07:00
corbuntus
957b3aaea7
Fix zyedidia#1330: Dlang character syntax highlighting
2019-05-24 20:12:45 +02:00
Osmose
a189d08c30
Fix #1314 : Add support for diffs from git commit --verbose
.
2019-05-21 17:26:06 -07:00
David Konsumer
26172b5101
add support for input and scalar defintiions (for graphql-tools schema)
2019-05-16 16:25:51 -07:00
USAMI Kenta
51691ed7bf
Reclassified PHP keywords
2019-05-12 20:14:17 +09:00
USAMI Kenta
5acbccf0b2
Add fn
keyword (arrow function) added in PHP 7.4 to coloring
...
https://wiki.php.net/rfc/arrow_functions_v2
2019-05-12 18:58:25 +09:00
Didactic Drunk
e33489c04f
Ruby syntax improvements.
...
String interpolation for Crystal syntax.
2019-04-30 11:29:42 -07:00
Mathieu Besançon
bcb8765049
Update julia.yaml
...
Some keywords are not in Julia and were removed. `include` is a standard function with no special property (no syntax-level highlight required)
2019-04-29 15:29:21 +02:00
coolreader18
7e34eabb0e
Add Elm syntax file
2019-04-25 22:45:23 -05:00
Koki Fushimi
87661ef308
Update keywords for infix operators
2019-04-09 06:57:58 +09:00
Koki Fushimi
58e11c0b2d
Update Julia keywords
2019-04-09 06:39:46 +09:00
Hugo Locurcio
1739e0c09c
Highlight NimScript files (.nims) as Nim
2019-02-16 20:00:38 +01:00
Krerkkiat Chusap
e3fd914e0b
Update sh.yaml
...
This adds back the lowercase characters to the identifier name.
2019-01-14 04:03:11 -05:00
Colin Rioux
ca9b1d7b14
Fixes #1249
2018-12-21 12:50:33 -05:00
Pascal
6aa5aa540b
Update zsh.yaml
...
Copied comment start from sh.yaml so that stuff like `$#` doesn't count as comments
2018-12-13 09:55:19 +01:00
Zachary Yedidia
3c87d1cfb4
Merge pull request #1200 from Calinou/add-systemd-timer-section
...
Add [Timer] section to systemd highlighting
2018-12-10 14:32:06 -05:00
Zachary Yedidia
6f3548e7ce
Merge pull request #1223 from piaph/syntax_highlight_files_in_gentoo_portage_folders
...
Changed regex for Gentoo etc-portage to include detection of folders
2018-12-10 14:31:26 -05:00
Zachary Yedidia
2a0d78b86d
Merge pull request #1201 from Calinou/use-more-ini-highlighting
...
Highlight .tscn, .tres and project.godot files using INI syntax
2018-12-10 14:31:05 -05:00
Zachary Yedidia
ba98e973c4
Merge pull request #1202 from luizbills/patch-1
...
add 'from' and 'of' keywords in javascript syntax file
2018-12-10 14:30:25 -05:00
Zachary Yedidia
3515f254c4
Merge pull request #1203 from luizbills/patch-2
...
detect '.mjs' as javascript file
2018-12-10 14:30:08 -05:00