comparison src/README.md @ 16411:5b5c5daf57de v8.1.1210

patch 8.1.1210: support for user commands is spread out commit https://github.com/vim/vim/commit/ac9fb18020d7e8bf16d02d45fbb02cf47328aaf7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 27 13:04:13 2019 +0200 patch 8.1.1210: support for user commands is spread out 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Apr 2019 13:15:07 +0200
parents cbb6e28af4cb
children 30de89c1d090
comparison
equal deleted inserted replaced
16410:eb356c5e6287 16411:5b5c5daf57de
26 autocmd.c | autocommands 26 autocmd.c | autocommands
27 buffer.c | manipulating buffers (loaded files) 27 buffer.c | manipulating buffers (loaded files)
28 debugger.c | vim script debugger 28 debugger.c | vim script debugger
29 diff.c | diff mode (vimdiff) 29 diff.c | diff mode (vimdiff)
30 eval.c | expression evaluation 30 eval.c | expression evaluation
31 evalfunc.c | built-in functions
31 fileio.c | reading and writing files 32 fileio.c | reading and writing files
32 findfile.c | search for files in 'path' 33 findfile.c | search for files in 'path'
33 fold.c | folding 34 fold.c | folding
34 getchar.c | getting characters and key mapping 35 getchar.c | getting characters and key mapping
35 indent.c | C and Lisp indentation 36 indent.c | C and Lisp indentation
38 mbyte.c | multi-byte character handling 39 mbyte.c | multi-byte character handling
39 memfile.c | storing lines for buffers in a swapfile 40 memfile.c | storing lines for buffers in a swapfile
40 memline.c | storing lines for buffers in memory 41 memline.c | storing lines for buffers in memory
41 menu.c | menus 42 menu.c | menus
42 message.c | (error) messages 43 message.c | (error) messages
43 ops.c | handling operators ("d", "y", "p") 44 ops.c | handling operators ("d", "y", "p")
44 option.c | options 45 option.c | options
45 quickfix.c | quickfix commands (":make", ":cn") 46 quickfix.c | quickfix commands (":make", ":cn")
46 regexp.c | pattern matching 47 regexp.c | pattern matching
47 screen.c | updating the windows 48 screen.c | updating the windows
48 search.c | pattern searching 49 search.c | pattern searching
49 sign.c | signs 50 sign.c | signs
50 spell.c | spell checking 51 spell.c | spell checking
51 syntax.c | syntax and other highlighting 52 syntax.c | syntax and other highlighting
52 tag.c | tags 53 tag.c | tags
53 term.c | terminal handling, termcap codes 54 term.c | terminal handling, termcap codes
54 undo.c | undo and redo 55 undo.c | undo and redo
56 usercmd.c | user defined commands
57 userfunc.c | user defined functions
55 window.c | handling split windows 58 window.c | handling split windows
56 59
57 60
58 ## Debugging ## 61 ## Debugging ##
59 62