summaryrefslogtreecommitdiff
path: root/src/usercmd.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.2.4903: cannot get the current cmdline completion type and positionv8.2.4903Shougo Matsushita2022-05-071-0/+19
* patch 8.2.4617: no completion for :scriptnamesv8.2.4617Yegappan Lakshmanan2022-03-241-0/+1
* patch 8.2.4616: Vim9: Declarations in a {} block of a user command remainv8.2.4616Bram Moolenaar2022-03-231-0/+20
* patch 8.2.4565: no command line completion for :breakadd and :breakdelv8.2.4565Bram Moolenaar2022-03-141-0/+3
* patch 8.2.4428: crash when switching tabpage while in the cmdline windowv8.2.4428Bram Moolenaar2022-02-201-20/+4
* patch 8.2.4415: function argument name conflicts with C++ keywordv8.2.4415Bram Moolenaar2022-02-181-7/+7
* patch 8.2.4398: some command completion functions are too longv8.2.4398Yegappan Lakshmanan2022-02-161-0/+53
* patch 8.2.4127: build failure without the +eval featurev8.2.4127Bram Moolenaar2022-01-171-0/+2
* patch 8.2.4122: ":command Cmd" does not show custom completion argumentv8.2.4122Bram Moolenaar2022-01-171-0/+7
* patch 8.2.4118: using UNUSED for argument that is usedv8.2.4118Bram Moolenaar2022-01-161-4/+4
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-1/+1
* patch 8.2.4040: keeping track of allocated lines is too complicatedv8.2.4040Bram Moolenaar2022-01-081-2/+2
* patch 8.2.4038: various code not used when features are disabledv8.2.4038Dominique Pelle2022-01-081-0/+4
* patch 8.2.4022: two error messages in the wrong filev8.2.4022Bram Moolenaar2022-01-061-1/+1
* patch 8.2.4010: error messages are spread outv8.2.4010Bram Moolenaar2022-01-051-1/+1
* patch 8.2.3986: error messages are spread outv8.2.3986Bram Moolenaar2022-01-021-2/+2
* patch 8.2.3957: error messages are spread outv8.2.3957Bram Moolenaar2021-12-311-11/+11
* patch 8.2.3779: using freed memory when defining a user command recursivelyv8.2.3779Bram Moolenaar2021-12-101-2/+9
* patch 8.2.3733: Vim9: using "legacy" before range does not workv8.2.3733Bram Moolenaar2021-12-041-0/+1
* patch 8.2.3629: command completion in cmdline window uses global commandsv8.2.3629mityu2021-11-201-8/+10
* patch 8.2.3584: "verbose set efm" reports location of the :compiler commandv8.2.3584Bram Moolenaar2021-11-121-4/+10
* patch 8.2.3433: :delcommand does not take a -buffer optionv8.2.3433Bram Moolenaar2021-09-121-6/+16
* patch 8.2.3414: fullcommand() gives wrong name with buffer-local user commandv8.2.3414Bram Moolenaar2021-09-081-1/+27
* patch 8.2.3282: Vim9: error about using -complete without -nargs is confusingv8.2.3282Bram Moolenaar2021-08-041-2/+3
* patch 8.2.3271: Vim9: cannot use :command or :au with block in :def functionv8.2.3271Bram Moolenaar2021-08-011-16/+19
* patch 8.2.3268: cannot use a block with :autocmd like with :commandv8.2.3268Bram Moolenaar2021-08-011-35/+44
* patch 8.2.3228: cannot use a simple block for the :command argumentv8.2.3228Bram Moolenaar2021-07-271-2/+43
* patch 8.2.3149: some plugins have a problem with the error checkv8.2.3149Bram Moolenaar2021-07-111-1/+9
* patch 8.2.3141: no error when using :complete for :command without -nargsv8.2.3141Martin Tournoij2021-07-111-8/+2
* patch 8.2.2922: computing array length is done in various waysv8.2.2922K.Takata2021-06-021-2/+2
* patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval featurev8.2.2238Bram Moolenaar2020-12-281-7/+3
* patch 8.2.1906: warning for signed/unsignedv8.2.1906Bram Moolenaar2020-10-261-2/+2
* patch 8.2.1900: Vim9: command modifiers do not workv8.2.1900Bram Moolenaar2020-10-241-64/+76
* patch 8.2.1898: command modifier parsing always uses global cmdmodv8.2.1898Bram Moolenaar2020-10-241-22/+22
* patch 8.2.1873: Vim9: missing white space when using <f-args>v8.2.1873Bram Moolenaar2020-10-201-1/+2
* patch 8.2.0967: unnecessary type casts for vim_strnsave()v8.2.0967Bram Moolenaar2020-06-121-2/+2
* patch 8.2.0624: Vim9: no check for space before #commentv8.2.0624Bram Moolenaar2020-04-231-2/+2
* patch 8.2.0595: Vim9: not all commands using ends_excmd() testedv8.2.0595Bram Moolenaar2020-04-181-0/+1
* patch 8.2.0577: not all modifiers supported for :optionsv8.2.0577Bram Moolenaar2020-04-131-19/+33
* patch 8.2.0056: execution stack is incomplete and inefficientv8.2.0056Bram Moolenaar2019-12-291-2/+2
* patch 8.2.0054: :diffget and :diffput don't have good completionv8.2.0054Bram Moolenaar2019-12-291-0/+1
* patch 8.1.2396: using old C style commentsv8.1.2396Bram Moolenaar2019-12-051-1/+1
* patch 8.1.2145: cannot map <C-H> when modifyOtherKeys is enabledv8.1.2145Bram Moolenaar2019-10-131-1/+1
* patch 8.1.1887: the +cmdline_compl feature is not in the tiny versionv8.1.1887Bram Moolenaar2019-08-181-20/+10
* patch 8.1.1823: command line history code is spread outv8.1.1823Bram Moolenaar2019-08-061-2/+0
* patch 8.1.1732: completion in cmdwin does not work for buffer-local commandsv8.1.1732Bram Moolenaar2019-07-221-4/+17
* patch 8.1.1667: flags for Ex commands may clash with other symbolsv8.1.1667Bram Moolenaar2019-07-121-28/+28
* patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384Bram Moolenaar2019-05-241-1/+1
* patch 8.1.1260: comparing with pointer instead of valuev8.1.1260Bram Moolenaar2019-05-041-3/+3
* patch 8.1.1259: crash when exiting earlyv8.1.1259Bram Moolenaar2019-05-031-1/+2