A simple and opinionated modal code editor for your terminal
Pepper language syntax definitions are minimalistic. That is, it’s just a collection of patterns for each kind of token. These token kinds control which theme color to use when rendering that token.
Here’s an example of syntax definition for the lua language:
syntax "**/*.lua"
syntax-keywords and|break|do|elseif|else|end|for|function|if|in|local|not|or|repeat|return|then|until|while
syntax-symbols {{+|-|*|/|%%|^|#|<|>|=|~|%(|%)|%{|%}|%[|%]|;|%.|:|,|%.|%.%.|%.%.%.}}
syntax-literals nil|false|true|_G|_ENV|%d{%d_}%.%w{%w_}|%d{%w_}
syntax-strings {={'{(\\)(\')!'.}|"{(\\)(\")!".}|%[%[{!(%]%]).}}=}
syntax-comments --{.}|--%[%[{!(%]%]).$}
You can see a full example of language definitions that come out-of-the-box.
Note that there’s always a syntax
command that defines the glob that matches that syntax filepaths.
Then following the call to syntax
command, it’s possible to override each token pattern using the following commands:
syntax-keywords
syntax-types
syntax-symbols
syntax-literals
syntax-strings
syntax-comments
syntax-texts
Each of these commands takes a single pattern argument.
Also, if a syntax can’t match a token to a text slice, it will assume a text
token kind which is used for normal text.
So in theory, when defining a syntax definition, you can skip defining a pattern for the texts
token kind.
The default pattern for text tokens is %a{%w_}|_{%d_}%.%w{%w_}|%d{%w_}
syntax-strings {={'{(\\)(\')!'.}|"{(\\)(\")!".}|%[%[{!(%]%]).}}=}
syntax-comments --{.}|--%[%[{!(%]%]).$}
``
You can see a full example of language definitions that come out-of-the-box.
Note that there’s always a syntax
command that defines the glob that matches that syntax filepaths.
Then following the call to syntax
command, it’s possible to override each token pattern using the following commands:
syntax-keywords
syntax-types
syntax-symbols
syntax-literals
syntax-strings
syntax-comments
syntax-texts
Each of these commands takes a single pattern argument.
Also, if a syntax can’t match a token to a text slice, it will assume a text
token kind which is used for normal text.
So in theory, when defining a syntax definition, you can skip defining a pattern for the texts
token kind.
The default pattern for text tokens is %a{%w_}|_{%w_}
which is the rule most languages use for their identifiers.
Pepper uses it’s own syntax to define patterns. It’s inspired by both lua patterns and simple regexes. However the syntax was designed in a way that not only makes it super easy to compile, but also lets the interpreter be non-recursive.
subpattern | matches |
---|---|
<char> |
matches a character (except %$.!()[]{} that need escaping) |
%a |
matches an alphabetic character |
%l |
matches a lowercase character |
%u |
matches an uppercase character |
%d |
matches a single digit |
%w |
matches an alphanumeric character |
%b |
matches a word boundary |
^ |
matches line start |
$ |
matches line end |
. |
matches any character |
%% |
matches % |
%^ |
matches ^ |
%$ |
matches $ |
%. |
matches . |
%! |
matches ! |
%( |
matches ( |
%) |
matches ) |
%[ |
matches [ |
%] |
matches ] |
%{ |
matches { |
%} |
matches } |
[...] |
matches any of these subpatterns |
[!...] |
matches anything except these subpatterns |
(...) |
matches a sequence of subpatterns |
(!...) |
matches anything except this sequence of subpatterns |
{...} |
tries to match any of these subpatterns as much as possible |
...|... |
if what came before it fails, try again from the beginning with the new pattern to the right. kinda like an logical ‘or’ |
[...]
This will try to match each subpattern inside the brackets in declaration order.
As soon as one of them matches, the pattern continues by jumping to after the ]
. If all of them fails, then
this group subpattern also fails. If right after [
there is a !
, then the logic is inverted and this group
subpattern only matches if every subpattern inside it fails, and fails if any of them matches.
All subpatterns need to have the same exact length.
pattern | matches | does not match |
---|---|---|
[abc] |
b , c |
d , 3 |
x[abc]y |
xay , xby |
xy , xdy |
[!abc] |
d , 8 |
a , b |
(...)
A sequence attempts to match each subpattern inside the brackets in declaration order.
As soon as one of them fails, the sequence fails. If right after (
there is a !
, then the logic
is inverted and this sequence subpattern will fail if all subpatterns inside it match. On the other hand,
given that the sequence has size n
, it will only match if the next n
chars do not match the sequence;
however consuming those n
chars.
pattern | matches | does not match |
---|---|---|
(abc) |
abc |
ab , ab2 |
(!abc) |
ab4 |
ab , abc |
{...}
This subpattern will try to match each of the subpatterns inside the brackets in declaration order. If any
of them matches, it will repeat and try again from the {
. If none matches, the pattern continues by jumping
to after the }
. If any of the subpatterns inside it is prefixed by !
it is treated as an ‘exit pattern’
and, if it matches, the pattern exits this repeat subpattern. If a repeat subpattern contains a !
inside it,
it will only match if one of the ‘exit pattern’ matches.
pattern | matches | does not match |
---|---|---|
{a}b |
b , ab , aaab |
c |
{ab}c |
ac , bc , abbbabbbc |
5 |
{ab!c} |
c , abbabc |
ababa |
...|...
This enables branching a pattern. It will either match everything on the left or everything on the right. As soon as a subpattern matches, it ends the pattern matching. Although it can’t be used inside other constructs, it’s possible to use subpatterns with different lengths.
pattern | matches | does not match |
---|---|---|
a|b |
a , b |
c |
abc|%d |
abc , 0 , 8 |
! , ab |
{a}|bb |
` ` (empty), a , aaa , bb |
b , c |
pattern | description |
---|---|
%a{%w_} |
most languages identifiers can be matched with this |
%d{%w%._} |
poor-man’s number literal parser. as soon as a digit is found, it will parse all alphanumeric char, . or _ in the sequence |
"{(\")!".} |
string delimited by " which can contain escaped \" . note that (\") is checked first so it can be ignored correctly |
//{.} |
c-style single line comment. will match everything to the right of the // |
/*{!(*/).$} |
c-style multi line comment. the order inside {} is important. the ‘exit pattern’ comes first to stop as soon as a */ is found |
if|while|for |
tries to match against several keywords |