diff options
author | pommicket <pommicket@gmail.com> | 2023-08-13 12:05:54 -0300 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-08-13 12:05:54 -0300 |
commit | 598d72c0674bb059c0f38f03c4851bcc61e5852d (patch) | |
tree | ae01311a6bdf872120b9787d44746ab9cd95db14 /development.md | |
parent | dbf441cdc74245c5a5f567ae0165146cd74c3b92 (diff) |
various little changes, remove calls to change_directory
Diffstat (limited to 'development.md')
-rw-r--r-- | development.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/development.md b/development.md index c633885..086b46a 100644 --- a/development.md +++ b/development.md @@ -106,6 +106,12 @@ At the top of `syntax.c` there are a bunch of `SYNTAX_STATE_*` constants. Create a new enum for your language, and add any state that needs to be remembered across lines. Then implement the `syntax_highlight_<language>` function similar to the other ones. +## Glossary + +- **buffer** - a text document +- **column** - one space width +- **line buffer** - a single-line buffer, e.g. the file name input in the "open file" menu + ## Releasing When releasing a new version of `ted`: |