timeyyy
f017ae6115
doc/provider: python virtualenvs #6135
...
Closes #1887
Helped-by: Tommy Allen <tommy@esdf.io>
2017-02-17 03:44:05 +01:00
Justin M. Keyes
706b01ba79
Merge #6114 'Partial string handling refactoring'.
2017-02-17 02:08:21 +01:00
Justin M. Keyes
4a107a11a1
Merge #6105 from justinmk/win32-bindeps
...
Windows: ship with common tools
2017-02-16 16:53:34 +01:00
Justin M. Keyes
0095ad5693
win/CI: Cache dependencies.
2017-02-16 16:23:18 +01:00
Justin M. Keyes
ab9298ec15
win/package: Copy externals without analyzing.
...
These are just blobs that we jammed into the package. find_program() and
WindowsDllCopy.cmake do not make sense here, they search include paths
and try to determine DLL dependencies (GetPrerequisites).
2017-02-16 16:23:18 +01:00
Justin M. Keyes
3378ffac8a
win/package: nvim-qt GUI
...
Closes #6126
2017-02-16 16:23:18 +01:00
Justin M. Keyes
2fbc42aa8a
win/package: provide common tools
...
References #1507
Closes #1811
curl.exe curl_7_52_1_openssl_nghttp2_x86.7z from https://winampplugins.co.uk/curl/
curl 7.52.1 (x86_64-pc-win32) libcurl/7.52.1 OpenSSL/1.0.2k zlib/1.2.8 nghttp2/1.19.0
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: AsynchDNS IPv6 Largefile NTLM SSL libz HTTP2 HTTPS-proxy
tidy.exe http://tidybatchfiles.info
HTML Tidy for Windows
tidy version 5.3.14 date 2017.01.09 compiled for Windows win32 x86.
7za.exe http://www.7-zip.org
7-Zip 16.04 (2016-10-04)
cat.exe http://unxutils.sourceforge.net
from gVim:
diff.exe GNU diffutils version 2.7
xxd.exe V1.10 27oct98 by Juergen Weigert (Win32)
ye olde hacked-up tee.exe
2017-02-16 16:23:18 +01:00
Rui Abreu Ferreira
7caaa106e3
win/build: Download winpty
...
Winpty has x86/x64 binary builds, download them when building
Neovim.
2017-02-16 16:23:18 +01:00
Rui Abreu Ferreira
bddea0caff
win/build: Fix libuv recipe for Windows/NMake X86_64
...
The 64bit check for the libuv recipe worked for the VS generator
but not for NMake.
2017-02-16 16:23:18 +01:00
Rui Abreu Ferreira
91205d219a
win/build: detect architecture
2017-02-16 16:23:17 +01:00
svaante
a05690ae2d
tui.c: Handle missing "key_dc" terminfo entry ( #6128 )
...
Closes #6025
2017-02-16 11:59:01 +01:00
lonerover
362298e141
vim-patch:7.4.2061
...
Problem: qf_init_ext() is too big.
Solution: Move code to qf_parse_line() (Yegappan Lakshmanan)
e87e6dddc2
2017-02-16 16:26:12 +08:00
Kurt Bonatz
0e44916fff
ex_docmd.c: Allow unescaped spaces in :edit filename ( #6119 )
...
This makes :edit consistent on all platforms.
Also affects :argedit, et al. Wild (tab) completion doesn't work, though.
Closes #6010
2017-02-15 11:12:31 +01:00
lonerover
a926f10d45
vim-patch:7.4.2047
...
Problem: Compiler warning for initializing a struct.
Solution: Initialize in another way. (Anton Lindqvist)
bfafb4c4a0
2017-02-15 12:18:44 +08:00
rover
9380574cf7
vim-patch:7.4.2046
...
Problem: The qf_init_ext() function is too big.
Solution: Refactor it. (Yegappan Lakshmanan)
e0d3797664
2017-02-15 12:14:59 +08:00
Michael Ennen
10c9ecc211
vim-patch:8.0.0297
...
Problem: Double free on exit when using a closure. (James McCoy)
Solution: Split free_al_functions in two parts. (closes #1428 )
03ff9bcbc9
2017-02-14 17:38:19 -07:00
Michael Ennen
ef8701610b
Allow lambdas to be used with jobs, timers and dictwatchers.
2017-02-14 17:38:19 -07:00
Michael Ennen
bae8a19c63
vim-patch:7.4.2235
...
Problem: submatch() does not check for a valid argument.
Solution: Give an error if the argument is out of range. (Dominique Pelle)
989f592f7f
2017-02-14 17:38:19 -07:00
Michael Ennen
effe760b13
vim-patch:7.4.2233
...
Problem: Crash when using funcref() with invalid name. (Dominique Pelle)
Solution: Check for NULL translated name.
843b884461
2017-02-14 17:38:19 -07:00
Michael Ennen
8cae66b5e0
vim-patch:7.4.2197
...
Problem: All functions are freed on exit, which may hide leaks.
Solution: Only free named functions, not reference counted ones.
c257487035
2017-02-14 17:38:18 -07:00
Michael Ennen
e2f76d190d
vim-patch:7.4.2143
...
Problem: A funccal is garbage collected while it can still be used.
Solution: Set copyID in all referenced functions. Do not list lambda
functions with ":function".
bc7ce675b2
2017-02-14 17:38:18 -07:00
Michael Ennen
00ac82eae2
vim-patch:7.4.2142
...
Problem: Leaking memory when redefining a function.
Solution: Don't increment the function reference count when it's found by
name. Don't remove the wrong function from the hashtab. More
reference counting fixes.
8dd3a43d75
2017-02-14 17:38:18 -07:00
Michael Ennen
42727ecf08
vim-patch:7.4.2141
...
Problem: Coverity reports bogus NULL check.
Solution: When checking for a variable in the funccal scope don't pass the
varname.
ba96e9af38
2017-02-14 17:38:18 -07:00
Michael Ennen
e71e9020eb
vim-patch:7.4.2139
...
Problem: :delfunction causes illegal memory access.
Solution: Correct logic when deciding to free a function.
0588d4f9d2
2017-02-14 17:38:18 -07:00
Michael Ennen
53fad45115
vim-patch:7.4.2137
...
Problem: Using function() with a name will find another function when it is
redefined.
Solution: Add funcref(). Refer to lambda using a partial. Fix several
reference counting issues.
437bafe4c8
2017-02-14 17:38:18 -07:00
Michael Ennen
1f715ac1c1
vim-patch:7.4.2136
...
Problem: Closure function fails.
Solution: Don't reset uf_scoped when it points to another funccal.
5801644819
2017-02-14 17:38:18 -07:00
Michael Ennen
1e3c0efa0f
vim-patch:7.4.2134
...
Problem: No error for using function() badly.
Solution: Check for passing wrong function name. (Ken Takata)
b54c3ff317
2017-02-14 17:38:17 -07:00
Michael Ennen
d7c798cd86
vim-patch:7.4.2121
...
Problem: No easy way to check if lambda and closure are supported.
Solution: Add the +lambda feature.
9532fe7fbe
2017-02-14 17:38:17 -07:00
Michael Ennen
f59321e319
vim-patch:7.4.2120
...
Problem: User defined functions can't be a closure.
Solution: Add the "closure" argument. Allow using :unlet on a bound
variable. (Yasuhiro Matsumoto, Ken Takata)
10ce39a0d5
2017-02-14 17:38:17 -07:00
Michael Ennen
9f6f7fe26d
vim-patch:7.4.2119
...
Problem: Closures are not supported.
Solution: Capture variables in lambdas from the outer scope. (Yasuhiro
Matsumoto, Ken Takata)
1e96d9bf98
2017-02-14 17:38:17 -07:00
Michael Ennen
6563d85990
vim-patch:7.4.2104
...
Problem: Code duplication when unreferencing a function.
Solution: De-duplicate.
97baee80f0
2017-02-14 17:38:17 -07:00
Michael Ennen
cbaa87a639
vim-patch:7.4.2096
...
Problem: Lambda functions show up with completion.
Solution: Don't show lambda functions. (Ken Takata)
b49edc11a1
2017-02-14 17:38:17 -07:00
Michael Ennen
7f4848aff4
vim-patch:7.4.2090
...
Problem: Using submatch() in a lambda passed to substitute() is verbose.
Solution: Use a static list and pass it as an optional argument to the
function. Fix memory leak.
df48fb456f
2017-02-14 17:38:17 -07:00
Michael Ennen
a0ce663710
vim-patch:7.4.2076
...
Problem: Syntax error when dict has '>' key.
Solution: Check for endchar. (Ken Takata)
4f0383bc3f
2017-02-14 17:38:16 -07:00
Michael Ennen
fc46efd3f2
vim-patch:7.4.2072
...
Problem: substitute() does not support a Funcref argument.
Solution: Support a Funcref like it supports a string starting with "\=".
72ab729c3d
2017-02-14 17:38:16 -07:00
Michael Ennen
bb7d0deb2f
vim-patch:7.4.2044
...
Problem: filter() and map() either require a string or defining a function.
Solution: Support lambda, a short way to define a function that evaluates an
expression. (Yasuhiro Matsumoto, Ken Takata)
069c1e7fa9
2017-02-14 17:38:16 -07:00
Michael Ennen
6c423989fc
vim-patch:7.4.2002
...
Problem: Crash when passing number to filter() or map().
Solution: Convert to a string. (Ozaki Kiichi)
a06ec8f345
2017-02-14 17:38:16 -07:00
Michael Ennen
bb2afeb026
vim-patch:7.4.1989
...
Problem: filter() and map() only accept a string argument.
Solution: Implement using a Funcref argument (Yasuhiro Matsumoto, Ken
Takata)
b33c7eb5b8
2017-02-14 17:38:16 -07:00
Michael Ennen
b0fc6108c9
vim-patch:7.4.1727
...
Problem: Cannot detect a crash in tests when caused by garbagecollect().
Solution: Add garbagecollect_for_testing(). Do not free a job if is still
useful.
ebf7dfa6f1
2017-02-14 17:38:15 -07:00
Nikolai Aleksandrovich Pavlov
64c375c589
unittest: Filter out standard defines so that they do not spam stderr ( #6113 )
2017-02-15 01:21:06 +01:00
ZyX
095e6cc2e0
*: Fix linter errors
2017-02-15 03:15:47 +03:00
ZyX
efa2682e3b
*: Partial string handling refactoring
...
Main points:
- Replace `char_u` with `char` in some cases.
- Remove `str[len] = NUL` hack in some cases when `str` may be considered
`const`.
2017-02-15 02:48:33 +03:00
ZyX
ee16f78fa9
strings: Fix “unexpected format specifier: %lp” ASAN error
2017-02-15 00:45:04 +03:00
ZyX
0086991b1b
eval: Fix linter error
2017-02-15 00:28:34 +03:00
Justin M. Keyes
2a50ff7e2f
Merge #6108 from ZyX-I/pr-5678
...
Better core dumps checking
2017-02-14 21:43:01 +01:00
ZyX
f489827b5f
eval: Fix error messages from writefile
...
1. When calling writefile(list, fname, []) do not show error message twice.
2. Do not allow file name to be overwritten for writefile([1], 2).
3. Do not show “Can’t open file with an empty name” error after error like
“using Float as a String” when type of the second argument is not correct.
4. Do not give multiple error messages and still continue for code like
`writefile(["test", [], [], [], "tset"])`.
Note that to fix 4. ideally I need tv_check_str_or_nr which is currently present
in two PRs: #6114 and #5119 . I would want to avoid copying this function into
a yet another PR.
Ref vim/vim#1476 .
2017-02-14 20:46:12 +03:00
ZyX
066e6b8e9b
eval: Return immediately after an error in write_list()
...
Previously it could attempt to write trailing newline before returning.
2017-02-14 19:40:16 +03:00
James McCoy
eaf9caaf43
Merge pull request #6118 from lonerover/vim-patch
...
scripts/vim-patch.sh: don't ignore runtime/doc/tagsrch.txt
2017-02-14 06:02:21 -05:00
lonerover
891d412d6c
vim-patch.sh: don't ignore runtime/doc/tagsrch.txt
2017-02-14 16:14:41 +08:00
Nikolai Aleksandrovich Pavlov
6e881872f4
api/helpers: Remove NULL dereference ( #6109 )
...
Even though all used compilers can swallow this code, it is still
undefined behaviour.
2017-02-14 00:09:49 +01:00