aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-04-22 12:45:52 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-04-22 12:45:52 +0200
commit625244ab41640ec43d2621465ace81b4c242385b (patch)
treec3130b06d1fcb2994465f9bf9de4368cbb691363 /README.md
parentacb864cdc5b24e54b0b2b08e06d706ccaa3fa4c1 (diff)
downloadvis-625244ab41640ec43d2621465ace81b4c242385b.tar.gz
vis-625244ab41640ec43d2621465ace81b4c242385b.tar.xz
Rename window.[ch] to view.[ch]
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 77f739e..bd1b6e7 100644
--- a/README.md
+++ b/README.md
@@ -554,9 +554,9 @@ A quick overview over the code structure to get you started:
`text-objects.[ch]` | functions take a file position and return a file range
`vis.c` | vi(m) specific editor frontend, program entry point
`editor.[ch]` | editor window management
- `window.[ch]` | ui-independent viewport, syntax highlighting, cursor placement
+ `view.[ch]` | ui-independent viewport, shows part of a file, syntax highlighting, cursor placement
`ui.h` | abstract interface as implemented by user interface
- `ui-curses.h` | a terminal / curses based user interface implementation
+ `ui-curses.[ch]` | a terminal / curses based user interface implementation
`buffer.[ch]` | dynamically growing buffer used for registers and macros
`ring-buffer.[ch]` | fixed size ring buffer used for the jump list
`map.[ch]` | crit-bit tree based map supporting unique prefix lookups and ordered iteration. used to implement `:`-commands.