diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-27 13:04:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-27 13:04:13 +0200 |
commit | ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7 (patch) | |
tree | 439cf73bcd9696032bfe85cd170b0623a9dffa9a /src/README.md | |
parent | 5431589d25e73892fcf7ad1eaca53f742c1c9303 (diff) | |
download | vim-git-ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7.tar.gz |
patch 8.1.1210: support for user commands is spread outv8.1.1210
Problem: Support for user commands is spread out. No good reason to make
user commands optional.
Solution: Move user command support to usercmd.c. Always enable the
user_commands feature.
Diffstat (limited to 'src/README.md')
-rw-r--r-- | src/README.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/README.md b/src/README.md index f1e7ec2c3..c6bb8ac25 100644 --- a/src/README.md +++ b/src/README.md @@ -28,6 +28,7 @@ buffer.c | manipulating buffers (loaded files) debugger.c | vim script debugger diff.c | diff mode (vimdiff) eval.c | expression evaluation +evalfunc.c | built-in functions fileio.c | reading and writing files findfile.c | search for files in 'path' fold.c | folding @@ -40,7 +41,7 @@ memfile.c | storing lines for buffers in a swapfile memline.c | storing lines for buffers in memory menu.c | menus message.c | (error) messages -ops.c | handling operators ("d", "y", "p") +ops.c | handling operators ("d", "y", "p") option.c | options quickfix.c | quickfix commands (":make", ":cn") regexp.c | pattern matching @@ -49,9 +50,11 @@ search.c | pattern searching sign.c | signs spell.c | spell checking syntax.c | syntax and other highlighting -tag.c | tags +tag.c | tags term.c | terminal handling, termcap codes undo.c | undo and redo +usercmd.c | user defined commands +userfunc.c | user defined functions window.c | handling split windows |