aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* ext_cmdline: restructure and improve testsBjörn Linse2017-10-26
|
* ext_cmdline: documentationBjörn Linse2017-10-26
|
* ext_cmdline: rename cmdline_char to cmdline_special_charBjörn Linse2017-10-26
|
* ext_cmdline: extend "function" to generic "block" mechanismBjörn Linse2017-10-26
|
* ext_cmdline: disable some redrawsBjörn Linse2017-10-26
|
* ext_cmdline: add support for highlightingBjörn Linse2017-10-26
|
* ext_cmdline: lintDongdong Zhou2017-10-26
|
* ext_cmdline: added indentDongdong Zhou2017-10-26
|
* ext_cmdline: Add function block supportDongdong Zhou2017-10-26
|
* ext_cmdline: added cmdline levelDongdong Zhou2017-10-26
| | | | add cchar_to_string
* ext_cmdline: change to use ui_callDongdong Zhou2017-10-26
|
* ext_cmdline: fix firstc, change cmdline_leave to cmdline_hideDongdong Zhou2017-10-26
|
* ext_cmdline: change the content formatDongdong Zhou2017-10-26
|
* ext_cmdline: use standard external ui functionsDongdong Zhou2017-10-26
|
* ext_cmdline: lintDongdong Zhou2017-10-26
|
* ext_cmdline: add testsDongdong Zhou2017-10-26
|
* ext_cmdline: Added cmdline promptDongdong Zhou2017-10-26
|
* ext_cmdline: allow external ui to draw cmdlineDongdong Zhou2017-10-26
|
* Merge pull request #6967 from jamessan/icm-skip-modifiersJames McCoy2017-10-24
|\ | | | | inccommand: Ignore leading modifiers in the command
| * inccommand: Ignore leading modifiers in the commandJames McCoy2017-10-24
| |
* | :version : show Lua[Jit] version (#7436)Justin M. Keyes2017-10-24
|/ | | Also remove vestigial `extra_patches` code.
* Merge #7430 'Ignore virtcols after 32000'Justin M. Keyes2017-10-22
|\
| * test: tabstop=<big-number> #2838Justin M. Keyes2017-10-22
| |
| * plines_win_nofold(): Ignore virtcols after 32000th computation #3527Victor Adam2017-10-22
| | | | | | | | | | | | | | | | | | | | | | Avoid crashing or hanging when editing a file than contains ludicrously long lines (more than 100,000,000 virtual columns). The change is in plines_win_nofold, which is called by wrapping and folding code. As a result, wrapping and folding may be done incorrectly when the UI is capable of rendering more than 32000 characters at a time (tiny font). fixes #2838
* | Merge #7165 'lua: Move stricmp to vim module'Justin M. Keyes2017-10-22
|\ \ | |/ |/|
| * doc: Describe everything what is in `vim` lua “module”ZyX2017-08-16
| | | | | | | | [ci skip]
| * lua/executor: Fix crash when first string contains NUL and second notZyX2017-08-15
| |
| * lua/executor: Move stricmp to vim “module” and document itZyX2017-08-15
| |
| * functests: Add test for stricmpZyX2017-08-15
| |
| * lua/executor: Make stricmp function work with strings with NULsZyX2017-08-15
| |
* | :cquit : take an error code argument #7336Josh Leeb-du Toit2017-10-22
| | | | | | | | | | | | | | | | | | | | closes #2699 ex_cmds.lua: use flags consistent with similar commands such as `cnext`. upstream discussion: "[patch] :qcuit can take exit code" https://groups.google.com/d/msg/vim_dev/_PjyNbUKyRc/oPgr5_ZXc6AJ
* | vim-patch:8.0.0140 (#7428)KunMing Xie2017-10-22
| | | | | | | | | | | | | | | | Problem: Pasting inserted text in Visual mode does not work properly. (Matthew Malcomson) Solution: Stop Visual mode before stuffing the inserted text. (Christian Brabandt, from neovim #5709) https://github.com/vim/vim/commit/f8eb9c51e5bbd10e59c9b1247f8f6c7f5b77ccd0
* | Merge #7420 'vim-patch:8.0.0962, 8.0.1019'Justin M. Keyes2017-10-21
|\ \
| * | vim-patch:8.0.1019Justin M. Keyes2017-10-21
| | | | | | | | | | | | | | | | | | | | | Problem: Pasting in virtual edit happens in the wrong place. Solution: Do not adjust coladd when after the end of the line (closes vim/vim#2015) https://github.com/vim/vim/commit/d41babef89a50cdf165f15bc1834c0a4e89ffff8
| * | vim-patch:8.0.0962Justin M. Keyes2017-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | closes #6726 Problem: Crash with virtualedit and joining lines. (Joshua T Corbin, Neovim #6726) Solution: When using a mark check that coladd is valid. https://github.com/vim/vim/commit/9aa156912867c05e0a6480925afe11c590378f09
* | | Merge #7030 'refactor/single-include'Justin M. Keyes2017-10-21
|\ \ \ | | | | | | | | | | | | ref #5321
| * | | lintrelnod2017-10-19
| | | |
| * | | refactor/single-include: undo.hrelnod2017-10-19
| | | |
| * | | refactor/single-include: undo_defs.hrelnod2017-10-19
| | | |
| * | | refactor/single-include: syntax_defs.hrelnod2017-10-19
| | | |
| * | | refactor/single-include: regexp_defs.hrelnod2017-10-19
| | | |
| * | | refactor/single-include: terminal.hrelnod2017-10-19
| | | |
* | | | cmake,bsd: Fix mandir to saner defaults. (#7417)Franklin Mathieu2017-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | closes #7239 The old behaviour was to set CMAKE_INSTALL_MANDIR to /usr/local/man when MANPREFIX wasn't defined. This caused mismatching installation paths when the installation prefix wasn't /usr/local. This fix explicitely checks that the prefix is /usr/local to change the value of CMAKE_INSTALL_MANDIR, and uses the default behaviour otherwise, as /usr/local is the exception rather than the norm (as per man hier(7)).
* | | | help, man.vim: change "outline" map to gO (#7405)Justin M. Keyes2017-10-21
| | | |
* | | | build: set MIN_LOG_LEVEL correctly (#7419)Justin M. Keyes2017-10-21
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | closes #7283 regression by 42d892913daa215c27e41b2255e96c1ce09ea56c - Don't need to explicitly put "-O2 -g" in RelWithDebInfo; CMake does that already. That was left-over from 42d892913daa2 which removed the "Dev" custom build-type, but repurposed the logic for RelWithDebInfo. - `if(DEFINED MIN_LOG_LEVEL)` doesn't work. - `if(${MIN_LOG_LEVEL} MATCHES "^$")` doesn't work if -DMIN_LOG_LEVEL is omitted. - `if(MIN_LOG_LEVEL)` also isn't what we want: it would be true if MIN_LOG_LEVEL=0.
* | | Merge pull request #7414 from bfredl/bufhl_newBjörn Linse2017-10-20
|\ \ \ | |/ / |/| | bufhl: support creating new groups
| * | bufhl: support creating new groupsBjörn Linse2017-10-19
|/ /
* | Merge pull request #7404 from jamessan/vim-8.0.0118James McCoy2017-10-18
|\ \ | | | | | | vim-patch:8.0.0118
| * | vim-patch:8.0.0118James McCoy2017-10-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | Runtime updates that were bundled into the otherwise NA commit: Problem: "make proto" adds extra function prototype. Solution: Add vim/vim#ifdef. https://github.com/vim/vim/commit/5162822914372fc916a93f85848c0c82209e7cec
* | | Merge #7399 ':checkhealth (built-in)'Justin M. Keyes2017-10-17
|\ \ \ | |/ / |/| |