aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | Windows: fix serverstart functional testRui Abreu Ferreira2015-12-31
| |/
* | Merge pull request #3304 from sethjackson/wildignorecaseJustin M. Keyes2015-12-31
|\ \ | | | | | | Windows: Ignore EW_ICASE in do_path_expand
| * | Windows: Ignore EW_ICASE in do_path_expandRui Abreu Ferreira2015-12-31
|/ / | | | | | | | | | | | | | | The do_path_expand() function is still using the unix_expandpath variant from Vim. For Windows it should behave as the old dos_expandpath() function. This commit adds an ifdef to ignore EW_ICASE flag in this function, otherwise all matches fail on Windows if wildignorecase is set.
* | Merge pull request #3881 from sethjackson/msvc-ui-callJustin M. Keyes2015-12-31
|\ \ | | | | | | MSVC: Fix UI_CALL for MSVC
| * | MSVC: Fix UI_CALL macro for MSVC.Rui Abreu Ferreira2015-12-22
| | | | | | | | | | | | | | | | | | | | | The UI_CALL macro uses variadic macros and relies on the non standard GCC extension. MSVC already applies similar behavior for the regular __VA_ARGS__ removing the comma. In MSVC UI_CALL can be implemented by calling UI_CALL_MORE directly.
* | | build: use our mirror of LuaJIT-2.0.4.tar.gzJustin M. Keyes2015-12-30
| | | | | | | | | | | | Point to new location.
* | | Merge pull request #3910 from Shougo/versionJustin M. Keyes2015-12-30
|\ \ \ | |_|/ |/| | Update version.c to 7.4.1000
| * | Update version.c to 7.4.1000Shougo Matsushita2015-12-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NA patches list: 607 Compiler warning 620 Compiler warning 624 result check for realloc 628 volatile add, but no code in neovim 641 tabnew fix, but no code in neovim 661 no K_CURSORHOLD in neovim 841 add ifdef 842 Windows GUI 854 CONTRIBUTION.md 863 FEAT_DIFF 864 Tiny build 923 add ifdef 924 configure changes 927 if_ruby 928 client server 930 Windows GUI 934 Appveyor 938 X11 and GTK GUI fix 940 term 948 ifdef 954 if_lua 959 term 960 Windows build 962 Makefile fix 965 ifdef fix 966 configure fix 967 Makefile fix 976 configure fix 979 crypt feature 985 if_ruby 986 test fix in Windows 987 if_ruby 988 build rule 990 Appveyor 992 build fix in Windows 994 tests for Windows 995 GTK GUI 996 GTK GUI 997 Travis CI 999 Makefile change
* | | Merge pull request #3869 from oni-link/fix.issue.3844Justin M. Keyes2015-12-30
|\ \ \ | | | | | | | | helpers.c: Handle msgpack str/bin objects with length 0 correctly
| * | | helpers.c: Handle msgpack str/bin objects with length 0 correctlyoni-link2015-12-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When converting a msgpack object to a String object, strings (and byte arrays) with length 0 are handled as errors. This is fixed by always using the msgpack data pointer as a valid pointer. For a NULL pointer there is nothing to copy. Test by @snoe Fixes #3844
* | | | build: use our mirror of LuaJIT-2.0.4.tar.gzJustin M. Keyes2015-12-30
| | | | | | | | | | | | | | | | | | | | | | | | The luajit.org download URL: http://luajit.org/download/LuaJIT-2.0.4.tar.gz is breaking our travis builds because of connection problems.
* | | | Merge pull request #3874 from sethjackson/win-defsJustin M. Keyes2015-12-29
|\ \ \ \ | |_|/ / |/| | | MSVC: Define STDOUT_FILENO and STDERR_FILENO
| * | | MSVC: Define STDOUT_FILENO and STDERR_FILENO.Rui Abreu Ferreira2015-12-21
| | |/ | |/|
* | | Merge pull request #3879 from sethjackson/open-osfhandleJustin M. Keyes2015-12-26
|\ \ \ | | | | | | | | Windows: Fix cast in if_cscope.c
| * | | Windows: Fix cast in if_cscope.c.Seth Jackson2015-12-21
| |/ /
* | | Merge pull request #3849 from Shougo/vim-7.4.675Justin M. Keyes2015-12-26
|\ \ \ | | | | | | | | vim-patch:7.4.675
| * | | vim-patch:7.4.675Shougo Matsushita2015-12-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: When a FileReadPost autocommand moves the cursor inside a line it gets moved back. Solution: When checking whether an autocommand moved the cursor store the column as well. (Christian Brabandt) https://github.com/vim/vim/commit/eab316bdf9494eb1e076dfc5c8ec7ae000a0560f
* | | | Merge pull request #3868 from Shougo/vim-7.4.608Justin M. Keyes2015-12-26
|\ \ \ \ | | | | | | | | | | vim-patch:7.4.608, 7.4.612
| * | | | vim-patch:7.4.608, 7.4.612Shougo Matsushita2015-12-19
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: test_eval fails when the clipboard feature is missing. Solution: Skip part of the test. Reduce the text used. https://github.com/vim/vim/commit/4ac163ae5f137af236931e778660cf7878d70c25 Problem: test_eval fails on Mac. Solution: Use the * register instead of the + register. (Jun Takimoto) https://github.com/vim/vim/commit/e08dd4e49e6d67686e3ba1322a641488ad67c711
* | | | Merge #2927 'vim-patch:7.4.858'Justin M. Keyes2015-12-25
|\ \ \ \
| * | | | test: Makefile: add legacy cdo testJustin M. Keyes2015-12-25
| | | | |
| * | | | vim-patch:7.4.858Florian Walch2015-12-24
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: It's a bit clumsy to execute a command on a list of matches. Solution: Add the ":ldo", ":lfdo", ":cdo" and ":cfdo" commands. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
* | | | doc: os_dos.txt: Remove more references to MS-DOS/Windows 95 #3889Seth Jackson2015-12-23
| | | |
* | | | doc: Remove references to neXtaw GUI support #3892Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | We never supported it.
* | | | doc: Fix invalid referenceMichael Reed2015-12-22
| | | | | | | | | | | | | | | | found with `make -C runtime/doc html`
* | | | doc: mbyte.txt: Remove some low-hanging fruitMichael Reed2015-12-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Nvim has no concept of "huge" or "normal" features: the overwhelming majority of features are compiled in by default - Nvim does not link to X (X11), so doesn't support setting things via ~/.Xresources, among many other things
* | | | doc: Remove references to Athena GUI support #3891Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | We don't support Athena anymore.
* | | | doc: vi_diff: Update supported OS list #3890Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We do not support every Unix flavor in existence so note that here. We do not support Windows 95 or NT. Update the list to the Windows versions we do support. We only support OS X not classic Mac OS so note that too.
* | | | doc: Remove a reference to Windows ME #3888Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | We don't support Windows 95, Windows ME, or Windows 2000 anymore.
* | | | gitignore: Ignore errors.jsonSeth Jackson2015-12-22
| | | | | | | | | | | | | | | | It's generated by `make lint`.
* | | | doc: os_win32: More cleanup #3884Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | | | | | | | | | Follow-up to ee1f8ea Roger Knobbe is still mentioned in intro.txt, for anyone wondering.
* | | | doc: Remove some references to MS-DOS #3886Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | We don't support MS-DOS.
* | | | Windows: Remove unused function #3878Seth Jackson2015-12-22
| | | | | | | | | | | | | | | | The only call site was removed in 902ad8d.
* | | | doc: Remove references to Windows 3.1 #3883Seth Jackson2015-12-21
| |_|/ |/| |
* | | Tests: fix according to lualintMarco Hinz2015-12-20
| | |
* | | Merge pull request #3867 from Shougo/vim-7.4.604Justin M. Keyes2015-12-20
|\ \ \ | |/ / |/| | vim-patch:7.4.604
| * | vim-patch:7.4.604Shougo Matsushita2015-12-19
|/ / | | | | | | | | | | | | Problem: Running tests changes viminfo. Solution: Disable viminfo. https://github.com/vim/vim/commit/6bf7c523ad54f625547ef2cc6009c28c0dd337ed
* | Merge pull request #3722 from ZyX-I/fix-3721Justin M. Keyes2015-12-18
|\ \ | | | | | | shada: Continue dumping when variables failed to dump
| * | shada: Free wms->hms in shada_write_exitZyX2015-12-18
| | | | | | | | | Otherwise there should be memory leak.
| * | shada: Continue dumping when variables failed to dumpZyX2015-12-18
| | | | | | | | | | | | Closes #3721
* | | Merge pull request #3863 from justinmk/vim-8a94d87Justin M. Keyes2015-12-18
|\ \ \ | | | | | | | | vim-patch:8a94d87
| * | | vim-patch:8a94d87Justin M. Keyes2015-12-17
| | | | | | | | | | | | | | | | | | | | | | | | Update runtime files. https://github.com/vim/vim/commit/8a94d873aa8c753a8522ea86a049bdf2abd0c507
| * | | vim-patch.sh: force LC_ALL=C for preprocessingJustin M. Keyes2015-12-17
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Any patch may contain mixed encodings, so we must process them as byte arrays. E.g. with stock `sed` on OS X patch 8a94d873aa8c753a8522ea86a049bdf2abd0c507 causes this error: sed: RE error: illegal byte sequence To avoid that, set LC_ALL=C. Also remove redundant *.patch creation from review_pr().
* | | Merge pull request #3860 from justinmk/vim-0122c40Justin M. Keyes2015-12-17
|\ \ \ | | | | | | | | vim-patch:0122c40
| * | | vim-patch:0122c40Justin M. Keyes2015-12-17
|/ / / | | | | | | | | | | | | | | | Update runtime files. https://github.com/vim/vim/commit/0122c4070f84e71f15a39fb20ababeffb70757c4
* | | Merge pull request #3859 from justinmk/vim-83caecfJustin M. Keyes2015-12-17
|\ \ \ | | | | | | | | vim-patch:83caecf
| * | | vim-patch:83caecfJustin M. Keyes2015-12-17
| | | | | | | | | | | | | | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/83caecf31437c1e1af342186514f2a073ee1427e
* | | | Merge pull request #3858 from justinmk/vim-9da7ff7Justin M. Keyes2015-12-17
|\ \ \ \ | |/ / / |/| | | vim-patch:9da7ff7
| * | | vim-patch:9da7ff7Justin M. Keyes2015-12-17
|/ / / | | | | | | | | | | | | | | | Updated runtime files. https://github.com/vim/vim/commit/9da7ff70cc22c941b7e6810c7d960d0061040436
* | | vim-patch.sh: fix order of non-tagged patchesJustin M. Keyes2015-12-17
| | | | | | | | | | | | Sort non-tagged patches in descending order, like tagged patches.