diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-10-09 22:53:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-10-09 22:53:08 +0200 |
commit | 14c01f83487d5c53192297a710eda2b8a4ab17c9 (patch) | |
tree | d5c5e8d42ab13b257fd2e17fd7530511a766ba8a /src/README.md | |
parent | 6bd1d7706766a7899904163e8fd55ea117fb1953 (diff) | |
download | vim-git-14c01f83487d5c53192297a710eda2b8a4ab17c9.tar.gz |
patch 8.1.2127: the indent.c file is a bit bigv8.1.2127
Problem: The indent.c file is a bit big.
Solution: Move C-indent code a a new cindent.c file. Move other
indent-related code to indent.c. (Yegappan Lakshmanan,
closes #5031)
Diffstat (limited to 'src/README.md')
-rw-r--r-- | src/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/README.md b/src/README.md index 8d2014085..5d1730842 100644 --- a/src/README.md +++ b/src/README.md @@ -29,6 +29,7 @@ blob.c | blob data type buffer.c | manipulating buffers (loaded files) bufwrite.c | writing a buffer to file change.c | handling changes to text +cindent.c | C and Lisp indentation cmdexpand.c | command-line completion cmdhist.c | command-line history debugger.c | vim script debugger @@ -46,7 +47,7 @@ findfile.c | search for files in 'path' fold.c | folding getchar.c | getting characters and key mapping highlight.c | syntax highlighting -indent.c | C and Lisp indentation +indent.c | text indentation insexpand.c | Insert mode completion mark.c | marks map.c | mapping and abbreviations |