summaryrefslogtreecommitdiff
path: root/src/README.md
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-14 14:55:39 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-14 14:55:39 +0200
commitecaa70ea29c269dd0dabd3cd5acdfa0ce42ccd54 (patch)
treec711959d1b0fd9cffa3d90a57e62efe1321b9e6d /src/README.md
parent2898ebb44cee62a70a11b44a97bdad8cc00157b1 (diff)
downloadvim-git-ecaa70ea29c269dd0dabd3cd5acdfa0ce42ccd54.tar.gz
patch 8.1.1687: the evalfunc.c file is too bigv8.1.1687
Problem: The evalfunc.c file is too big. Solution: Move testing support to a separate file.
Diffstat (limited to 'src/README.md')
-rw-r--r--src/README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/README.md b/src/README.md
index 87361097f..61fbcf281 100644
--- a/src/README.md
+++ b/src/README.md
@@ -21,8 +21,8 @@ To jump to a file, move the cursor on its name and use the `gf` command.
Most code can be found in a file with an obvious name (incomplete list):
-File name | Description
---------- | -----------
+File name | Description
+--------------- | -----------
autocmd.c | autocommands
buffer.c | manipulating buffers (loaded files)
change.c | handling changes to text
@@ -44,6 +44,8 @@ menu.c | menus
message.c | (error) messages
ops.c | handling operators ("d", "y", "p")
option.c | options
+popupmnu.c | popup menu
+popupwin.c | popup window
profiler.c | vim script profiler
quickfix.c | quickfix commands (":make", ":cn")
regexp.c | pattern matching
@@ -54,6 +56,8 @@ spell.c | spell checking
syntax.c | syntax and other highlighting
tag.c | tags
term.c | terminal handling, termcap codes
+testing.c | testing: assert and test functions
+textprop.c | text properties
undo.c | undo and redo
usercmd.c | user defined commands
userfunc.c | user defined functions