aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | Merge #5254 from KillTheMule/vim-7.4.1952Justin M. Keyes2016-09-18
|\ \ \ | | | | | | | | vim-patch:7.4.{1952, 1990, 2033, 2284}
| * | | vim-patch:7.4.2284KillTheMule2016-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Comment in scope header file is outdated. (KillTheMule) Solution: Point to the help instead. (closes vim/vim#1017) https://github.com/vim/vim/commit/f4145d8e990a72bdfea9db3110a7e42a0ff4240c
| * | | Add if_cscope documentation for querytype 'a'KillTheMule2016-08-26
| | | | | | | | | | | | | | | | From 802a0d902fca423acb15f835d7b09183883d79a0.
| * | | LintKillTheMule2016-08-26
| | | |
| * | | vim-patch:7.4.2033KillTheMule2016-08-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: 'cscopequickfix' option does not accept new value "a". Solution: Adjust list of command characters. (Ken Takata) https://github.com/vim/vim/commit/6d20e1754461b0f8d395f2e3464f0dc1060497f7 All changes applied manually. Definition of `CSQF_CMDS` was moved to `option_defs.h` in nvim.
| * | | vim-patch:7.4.1990KillTheMule2016-08-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cscope items are not sorted. Solution: Put the new "a" command first. (Ken Takata) https://github.com/vim/vim/commit/80632db65e8f5f775dadbbc10c5ba6c173ebb24f All changes applied manually.
| * | | vim-patch:7.4.1952KillTheMule2016-08-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Cscope interface does not support finding assignments. Solution: Add the "a" command. (ppettina, closes vim/vim#882) https://github.com/vim/vim/commit/b12e7ef956e0b0344778b7ef93d41f4b4ed2a670 All changes applied manually.
* | | | insert_enter: Update folds on insert-leave. #5351Shougo Matsushita2016-09-18
| | | | | | | | | | | | | | | | | | | | Fixes failing test: 045_folding_spec.lua References #5299
* | | | eval.c: Clean up spurious FAIL checks. (#5345)Justin M. Keyes2016-09-18
| | | | | | | | | | | | rettv_list_alloc cannot fail.
* | | | api: Establish API naming convention. (#5344)Justin M. Keyes2016-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | old name: new name: -------------------------------------------------- nvim_name_to_color nvim_get_color_by_name nvim_get_current_buffer nvim_get_current_buf nvim_get_current_window nvim_get_current_win nvim_get_buffers nvim_list_bufs nvim_get_tabpages nvim_list_tabpages nvim_get_windows nvim_list_wins nvim_set_current_buffer nvim_set_current_buf nvim_set_current_window nvim_set_current_win nvim_change_directory nvim_set_current_dir nvim_tabpage_get_window nvim_tabpage_get_win nvim_tabpage_get_windows nvim_tabpage_list_wins nvim_win_get_buffer nvim_win_get_buf nvim_report_error nvim_err_writeln Helped-by: Björn Linse <bjorn.linse@gmail.com> Helped-by: ZyX <kp-pav@yandex.ru> Helped-by: James McCoy <jamessan@jamessan.com>
* | | | Merge #5326 'vim-patch:7.4.1547'Justin M. Keyes2016-09-17
|\ \ \ \
| * | | | test: synIDattr returns empty, not -1Stéphane Campinas2016-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | - Behavior changed in 7.4.1547 - Also removed N/A specs: nvim does not support ":hi term=..."
| * | | | vim-patch:7.4.1547 #5326Stéphane Campinas2016-09-16
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Getting a cterm highlight attribute that is not set results in the string "-1". Solution: Return an empty string. (Taro Muraoka) https://github.com/vim/vim/commit/385111bd86e0b38667879c3e89506ca1ae98e1df
* | | | perf: Skip foldUpdate() in insert-mode. #5299Shougo2016-09-16
| | | | | | | | | | | | Closes #5270
* | | | syntax.c: Support bg/fg special color-names. #5319Kerem Cakirer2016-09-16
| | | | | | | | | | | | | | | | Refresh colors if changing Normal group
* | | | Merge pull request #5336 from bfredl/del_varBjörn Linse2016-09-15
|\ \ \ \ | | | | | | | | | | make del_var and set_var not return the old value.
| * | | | api: make nvim[_obj]_set_var and _del_var not return the old valueBjörn Linse2016-09-15
| | | | |
| * | | | gendispatch: warn for deprecated alias if the deprecated function has ↵Björn Linse2016-09-15
|/ / / / | | | | | | | | | | | | implemation
* | | | Merge #5339 from jamessan/stray-test-processesJames McCoy2016-09-14
|\ \ \ \ | | | | | | | | | | | | | | | test/ui: Stop the terminal job after testing
| * | | | Restore output_spec assertion dropped in f332ebaJames McCoy2016-09-14
| | | | |
| * | | | tests/ui: Stop the terminal job after testingJames McCoy2016-09-14
|/ / / / | | | | | | | | | | | | | | | | | | | | When running the tests in a contained environment, the lingering terminal processes prevent the unmounting of the filesystems in the contained environment.
* | | | api: remove unnecessary initializations causing warnings in api dispatch (#5337)Björn Linse2016-09-14
| | | | | | | | | | | | | | | | | | | | Left over change from acb7c82 (fix leak when a api function is incorrectly called with a list.). These initializations are now never used and causes warnings in static analysis
* | | | Merge #5329 from justinmk/remove-misc2Justin M. Keyes2016-09-13
|\ \ \ \ | | | | | | | | | | Eliminate misc2.c
| * | | | read_string: Use char if you mean char.Justin M. Keyes2016-09-13
| | | | |
| * | | | refactor: eliminate misc2.cJustin M. Keyes2016-09-13
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | move `call_shell` to misc1.c Move some fns to state.c Move some fns to option.c Move some fns to memline.c Move `vim_chdir*` fns to file_search.c Move some fns to new module, bytes.c Move some fns to fileio.c
* | | | vim-patch:7.4.1558 (#5333)Justin M. Keyes2016-09-13
| | | | | | | | | | | | | | | | | | | | | | | | Problem: It is not easy to find out what windows display a buffer. Solution: Add win_findbuf(). https://github.com/vim/vim/commit/9cdf86b86f5fdb5a45b682f336846f9d9a9c6f1f
* | | | Merge 'vim-patch.sh'Justin M. Keyes2016-09-13
|\ \ \ \
| * | | | vim-patch.sh: Use printf instead of echoJustin M. Keyes2016-09-13
| | | | | | | | | | | | | | | | | | | | Also: neovim => nvim
| * | | | vim-patch.sh: preprocess_patch()Justin M. Keyes2016-09-13
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | - Remove not-applicable Vim changes such as *.proto, todo.txt, ... Also: - support NVIM_SOURCE_DIR override
* | | | Merge #4874 'Restore vim-like tab dragging'Justin M. Keyes2016-09-12
|\ \ \ \
| * | | | CI: Travis macOS: Skip tab left-drag tests.Justin M. Keyes2016-09-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These tests fail on master, so it's not a regression. Changes in #4874 (parent commit) seem to work (and pass most CI), so skipping these tests is better than blocking the changes.
| * | | | normal.c: Restore vim-like tab dragging. #4874sach1t2016-09-12
| | | | | | | | | | | | | | | | | | | | | | | | | Closes #4663 References #3310
* | | | | CI: test: Avoid QuickBuild hang. (#5330)Justin M. Keyes2016-09-12
|/ / / / | | | | | | | | Delete the CWD using nvim instead of the external lua/test runner process.
* | | | man.vim: prevent bell in ':wincmd w' when only one window (#5328)Anmol Sethi2016-09-11
| | | |
* | | | vim-patch:7.4.1535 (#5327)davix2016-09-11
| | | | | | | | | | | | | | | | | | | | | | | | Problem: The feedkeys test has a one second delay. Solution: Avoid need_wait_return() to delay. (Hirohito Higashi) https://github.com/vim/vim/commit/9e496854a9fe56699687a4f86003fad115b3b375
* | | | vim-patch:7.4.1533 #5320Wei Huang2016-09-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using feedkeys() with an empty string disregards 'x' option. Solution: Make 'x' work with an empty string. (Thinca) When integrating the patch to nvim, used same logic but different code based on nvim codebase. New test passed. https://github.com/vim/vim/commit/74c5bbf13435a7ab1e3461078bbcb1200f0451e1
* | | | Merge #2789 'system(): Respect shellxescape, shellxquote'Justin M. Keyes2016-09-11
|\ \ \ \
| * | | | shell_escape: rename; refactorJustin M. Keyes2016-09-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - rename to shell_xescape_xquote - move to os/shell.c - disallow NULL argument - eliminate casts, nesting - test: empty shellxquote/shellxescape
| * | | | system(): Respect 'sxe' and 'sxq' #2789Zhaosheng Pan2016-09-10
| | | | | | | | | | | | | | | | | | | | Fixes #2773
* | | | | Merge #5318 from equalsraf/fix-openbsdJustin M. Keyes2016-09-10
|\ \ \ \ \ | |/ / / / |/| | | | Fix OpenBSD builds
| * | | | third-party: Bump luv to v1.9.1-0Rui Abreu Ferreira2016-09-10
| | | | | | | | | | | | | | | | | | | | Fixes #4620
| * | | | Add compiler check for -Wno-static-in-inlineRui Abreu Ferreira2016-09-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add compiler check for -Wno-static-in-inline, the option is only supported in gcc >= 4.4, and some systems still ship with earlier versions of gcc (see #5300).
| * | | | Disable use of jemalloc in OpenBSDRui Abreu Ferreira2016-09-10
| | | | | | | | | | | | | | | | | | | | Works around #3434, turning off the use of jemalloc in OpenBSD.
* | | | | Merge #5316Justin M. Keyes2016-09-10
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | eval.c: Fix memory leak for detached pty joboni-link2016-09-08
| | | | |
| * | | | eval.c: Garbage collection frees dictionary before job cleanuponi-link2016-09-08
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing a job too early from the joblist gives garbage collection the chance to also remove the job dictionary. Can be triggered with ASAN while waiting 'updatetime'ms (~5 seconds) before closing the terminal window opened with: nvim -u NONE +'call termopen("true",{})'
* | | | docJustin M. Keyes2016-09-06
| | | |
* | | | doc: clarify reltime()Justin M. Keyes2016-09-05
| | | | | | | | | | | | | | | | Closes #5301
* | | | health.vim: "No healthchecks found" also needs the buffer.Justin M. Keyes2016-09-05
| | | |
* | | | Merge #5295 'health.vim'Justin M. Keyes2016-09-05
|\ \ \ \