summaryrefslogtreecommitdiff
path: root/src/vim9script.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.0253: a symlink to an autoload script results in two entriesv9.0.0253Bram Moolenaar2022-08-241-0/+14
* patch 9.0.0159: cannot build with small featuresv9.0.0159Bram Moolenaar2022-08-061-0/+4
* patch 9.0.0156: giving E1170 only in an expression is confusingv9.0.0156Bram Moolenaar2022-08-061-4/+7
* patch 9.0.0150: error for using #{ in an expression is a bit confusingv9.0.0150Bram Moolenaar2022-08-061-2/+2
* patch 8.2.5025: Vim9: a few lines not covered by testsv8.2.5025Bram Moolenaar2022-05-261-1/+1
* patch 8.2.4869: expression in command block does not look after NLv8.2.4869Bram Moolenaar2022-05-051-1/+1
* patch 8.2.4822: setting ufunc to NULL twicev8.2.4822LemonBoy2022-04-241-1/+2
* patch 8.2.4821: crash when imported autoload script was deletedv8.2.4821Bram Moolenaar2022-04-241-0/+3
* patch 8.2.4753: error from setting an option is silently ignoredv8.2.4753Bram Moolenaar2022-04-151-1/+2
* patch 8.2.4698: Vim9: script variable has no flag that it was setv8.2.4698Bram Moolenaar2022-04-051-7/+9
* patch 8.2.4682: Vim9: can use :unlockvar for const variablev8.2.4682Bram Moolenaar2022-04-041-3/+5
* patch 8.2.4656: Vim9: can't use item from "import autoload" with autoload dirv8.2.4656Bram Moolenaar2022-03-311-0/+3
* patch 8.2.4654: missing changes for import checkv8.2.4654Bram Moolenaar2022-03-311-1/+8
* patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650Bram Moolenaar2022-03-301-22/+50
* patch 8.2.4642: Vim9: in :def function script var cannot be nullv8.2.4642Bram Moolenaar2022-03-281-1/+8
* patch 8.2.4607: sourcing buffer lines may lead to errors for conflictsv8.2.4607Yegappan Lakshmanan2022-03-221-10/+19
* patch 8.2.4594: need to write script to a file to be able to source themv8.2.4594Yegappan Lakshmanan2022-03-191-2/+2
* patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526Bram Moolenaar2022-03-081-0/+8
* patch 8.2.4375: ctx_imports is not usedv8.2.4375Bram Moolenaar2022-02-131-1/+1
* patch 8.2.4333: cstack not always passed to where it is neededv8.2.4333Bram Moolenaar2022-02-081-1/+3
* patch 8.2.4332: Vim9: incomplete test for existing script variable in blockv8.2.4332Bram Moolenaar2022-02-081-1/+2
* patch 8.2.4330: Vim9: no error if script imports itselfv8.2.4330Bram Moolenaar2022-02-081-0/+6
* patch 8.2.4223: long/int compiler warnings; function arguments swappedv8.2.4223K.Takata2022-01-261-1/+1
* patch 8.2.4137: Vim9: calling import with and without method is inconsistentv8.2.4137Bram Moolenaar2022-01-181-5/+19
* patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not usefulv8.2.4136Bram Moolenaar2022-01-181-15/+0
* patch 8.2.4134: MS-Windows: test for import with absolute path failsv8.2.4134Bram Moolenaar2022-01-181-1/+7
* patch 8.2.4132: Vim9: wrong error message when autoload script can't be foundv8.2.4132Bram Moolenaar2022-01-181-2/+2
* patch 8.2.4087: cannot test items from an autoload script easilyv8.2.4087Bram Moolenaar2022-01-131-0/+3
* patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086Bram Moolenaar2022-01-131-2/+2
* patch 8.2.4076: memory leak in autoload importv8.2.4076Bram Moolenaar2022-01-131-1/+2
* patch 8.2.4072: Vim9: compiling function fails when autoload is not loadedv8.2.4072Bram Moolenaar2022-01-121-1/+10
* patch 8.2.4066: Vim9: imported autoload script loaded againv8.2.4066Bram Moolenaar2022-01-121-9/+16
* patch 8.2.4057: Vim9: not fully implementing the autoload mechanismv8.2.4057Bram Moolenaar2022-01-101-1/+1
* patch 8.2.4053: Vim9: autoload mechanism doesn't fully work yetv8.2.4053Bram Moolenaar2022-01-101-11/+28
* patch 8.2.4050: Vim9: need to prefix every item in an autoload scriptv8.2.4050Bram Moolenaar2022-01-091-21/+88
* patch 8.2.4044: Vim9: no error when importing the same script twicev8.2.4044Bram Moolenaar2022-01-081-12/+26
* patch 8.2.4038: various code not used when features are disabledv8.2.4038Dominique Pelle2022-01-081-0/+2
* patch 8.2.4025: error for import not ending in .vim does not work for .vimrcv8.2.4025Bram Moolenaar2022-01-071-3/+7
* patch 8.2.4023: using uninitialized variablev8.2.4023Bram Moolenaar2022-01-061-1/+1
* patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar2022-01-061-195/+65
* patch 8.2.3991: Vim9: error when extending dict<any>v8.2.3991Bram Moolenaar2022-01-031-1/+2
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-2/+2
* patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860Bram Moolenaar2021-12-201-1/+2
* patch 8.2.3771: Vim9: accessing freed memory when checking typev8.2.3771Bram Moolenaar2021-12-101-1/+24
* patch 8.2.3682: Vim9: assigning to a script variable drops the typev8.2.3682Bram Moolenaar2021-11-261-20/+14
* patch 8.2.3511: Vim9: entry for loop variable is created every roundv8.2.3511Bram Moolenaar2021-10-151-2/+3
* patch 8.2.3413: Vim9: too many characters are allowed in import namev8.2.3413Bram Moolenaar2021-09-081-3/+10
* patch 8.2.3349: eval test for scriptversion failsv8.2.3349Bram Moolenaar2021-08-151-2/+2
* patch 8.2.3347: check for legacy script is incompletev8.2.3347Bram Moolenaar2021-08-151-0/+12