summaryrefslogtreecommitdiff
path: root/src/eval.c
Commit message (Expand)AuthorAgeFilesLines
* patch 8.1.1894: not checking for out-of-memory of autoload_name()v8.1.1894Bram Moolenaar2019-08-201-1/+3
* patch 8.1.1891: functions used in one file are globalv8.1.1891Bram Moolenaar2019-08-201-4/+6
* patch 8.1.1887: the +cmdline_compl feature is not in the tiny versionv8.1.1887Bram Moolenaar2019-08-181-16/+0
* patch 8.1.1878: negative float before method not parsed correctlyv8.1.1878Bram Moolenaar2019-08-171-53/+76
* patch 8.1.1834: cannot use a lambda as a methodv8.1.1834Bram Moolenaar2019-08-091-47/+103
* patch 8.1.1828: not strict enough checking syntax of method invocationv8.1.1828Bram Moolenaar2019-08-081-0/+6
* patch 8.1.1820: using expr->FuncRef() does not workv8.1.1820Bram Moolenaar2019-08-051-80/+87
* patch 8.1.1816: cannot use a user defined function as a methodv8.1.1816Bram Moolenaar2019-08-041-2/+4
* patch 8.1.1803: all builtin functions are globalv8.1.1803Bram Moolenaar2019-08-031-11/+87
* patch 8.1.1800: function call functions have too many argumentsv8.1.1800Bram Moolenaar2019-08-031-17/+37
* patch 8.1.1766: code for writing session file is spread outv8.1.1766Bram Moolenaar2019-07-281-87/+0
* patch 8.1.1727: code for viminfo support is spread outv8.1.1727Bram Moolenaar2019-07-211-164/+1
* patch 8.1.1723: heredoc assignment has no room for new featuresv8.1.1723Bram Moolenaar2019-07-211-2/+10
* patch 8.1.1722: error when scriptversion is 2 a making a dictionary accessv8.1.1722Bram Moolenaar2019-07-201-6/+11
* patch 8.1.1705: using ~{} for a literal dict is not nicev8.1.1705Bram Moolenaar2019-07-161-5/+4
* patch 8.1.1692: using *{} for literal dict is not backwards compatiblev8.1.1692Bram Moolenaar2019-07-141-4/+4
* patch 8.1.1687: the evalfunc.c file is too bigv8.1.1687Bram Moolenaar2019-07-141-496/+10
* patch 8.1.1686: "*" of "*{" is recognized as multipy operatorv8.1.1686Bram Moolenaar2019-07-141-1/+1
* patch 8.1.1683: dictionary with string keys is longer than neededv8.1.1683Bram Moolenaar2019-07-131-3/+16
* patch 8.1.1660: assert_fails() does not fail inside try/catchv8.1.1660Bram Moolenaar2019-07-101-1/+6
* patch 8.1.1639: changing an autoload name into a file name is inefficientv8.1.1639Bram Moolenaar2019-07-051-5/+6
* patch 8.1.1588: in :let-heredoc line continuation is recognizedv8.1.1588Bram Moolenaar2019-06-251-1/+1
* patch 8.1.1585: :let-heredoc does not trim enoughv8.1.1585Bram Moolenaar2019-06-241-14/+37
* patch 8.1.1583: set_ref_in_list() only sets ref in itemsv8.1.1583Bram Moolenaar2019-06-231-2/+32
* patch 8.1.1575: callbacks may be garbage collectedv8.1.1575Bram Moolenaar2019-06-201-0/+7
* patch 8.1.1542: an OptionSet autocommand does not get enough infov8.1.1542Bram Moolenaar2019-06-151-2/+9
* patch 8.1.1539: not easy to define a variable and lock itv8.1.1539Bram Moolenaar2019-06-151-27/+112
* patch 8.1.1526: no numerical value for the patchlevelv8.1.1526Bram Moolenaar2019-06-141-3/+5
* patch 8.1.1491: when skipping over code a function call may cause troublev8.1.1491Bram Moolenaar2019-06-071-1/+1
* patch 8.1.1485: double free when garbage_collect() is used in autocommandv8.1.1485Bram Moolenaar2019-06-061-4/+3
* patch 8.1.1484: some tests are slowv8.1.1484Bram Moolenaar2019-06-061-4/+5
* patch 8.1.1437: code to handle callbacks is duplicatedv8.1.1437Bram Moolenaar2019-06-011-10/+11
* patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar2019-05-281-6/+6
* patch 8.1.1400: using global pointer for tab-local popups is clumsyv8.1.1400Bram Moolenaar2019-05-261-9/+4
* patch 8.1.1391: no popup window supportv8.1.1391Bram Moolenaar2019-05-251-0/+26
* patch 8.1.1386: unessesary type casts for lalloc()v8.1.1386Bram Moolenaar2019-05-241-2/+2
* patch 8.1.1384: using "int" for alloc() often results in compiler warningsv8.1.1384Bram Moolenaar2019-05-241-8/+7
* patch 8.1.1355: obvious mistakes are accepted as valid expressionsv8.1.1355Bram Moolenaar2019-05-191-2/+8
* patch 8.1.1354: getting a list of text lines is clumsyv8.1.1354Bram Moolenaar2019-05-191-0/+112
* patch 8.1.1319: computing function length name in many placesv8.1.1319Bram Moolenaar2019-05-111-4/+4
* patch 8.1.1261: no error for quickfix commands with negative rangev8.1.1261Bram Moolenaar2019-05-041-10/+18
* patch 8.1.1218: cannot set a directory for a tab pagev8.1.1218Bram Moolenaar2019-04-271-2/+16
* patch 8.1.1210: support for user commands is spread outv8.1.1210Bram Moolenaar2019-04-271-2/+2
* patch 8.1.1207: some compilers give warning messagesv8.1.1207Bram Moolenaar2019-04-261-1/+1
* patch 8.1.1188: not all Vim variables require the v: prefixv8.1.1188Bram Moolenaar2019-04-201-4/+8
* patch 8.1.1120: cannot easily get directory entry matchesv8.1.1120Bram Moolenaar2019-04-051-3/+3
* patch 8.1.1116: cannot enforce a Vim script stylev8.1.1116Bram Moolenaar2019-04-041-5/+33
* patch 8.1.1114: confusing overloaded operator "." for string concatenationv8.1.1114Bram Moolenaar2019-04-041-2/+10
* patch 8.1.1090: MS-Windows: modify_fname() has problems with some 'encoding'v8.1.1090Bram Moolenaar2019-03-301-10/+16
* patch 8.1.1032: warnings from clang static analyzerv8.1.1032Bram Moolenaar2019-03-211-2/+1