aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* vim-patch:7.4.1141Jurica Bradaric2016-03-03
| | | | | | | | Problem: Using searchpair() with a skip expression that uses syntax highlighting sometimes doesn't work. (David Fishburn) Solution: Reset next_match_idx. (Christian Brabandt) https://github.com/vim/vim/commit/6773a348da0dcf45df3c6c6649880655ec0d2042
* Merge PR #4375 'Proper type checking for set{qf,loc}list()'Marco Hinz2016-03-02
|\
| * Tests: check error messages from set{qf,loc}list()Marco Hinz2016-03-02
| |
| * Proper type checking for set{qf,loc}list()Marco Hinz2016-03-02
|/ | | | | | | | | | | | | Prior to this change, type errors were silently ignored. They're explicit now. setqflist(list, action, title) setloclist(win, list, action, title) "list" (required) must be a list. "action" (optional) must a string. "title" (optional) must a string or number that gets converted to a string. An error is thrown otherwise.
* edit.c: change return type to boolCharles Joachim2016-03-02
| | | | Co-authored-by: Wayne Rowcliffe (@war1025)
* Merge PR #4388 'Clean up tests'Marco Hinz2016-03-02
|\
| * Tests: add autocmd_spec.luaMarco Hinz2016-03-02
| |
| * Tests: clean up tabnew_spec.luaMarco Hinz2016-03-02
|/
* Merge pull request #4323 from watiko/vim-7.4.961Justin M. Keyes2016-03-02
|\ | | | | vim-patch:7.4.961
| * vim-patch:7.4.961watiko2016-02-23
| | | | | | | | | | | | | | Problem: Test107 fails in some circunstances. Solution: When using "zt", "zb" and "z=" recompute the fraction. https://github.com/vim/vim/commit/9dc2ce398bb3456cc8f590ef0260459798b34d2a
* | Merge pull request #4319 from watiko/vim-7.4.952Justin M. Keyes2016-03-02
|\ \ | | | | | | vim-patch:7.4.952
| * | vim-patch:7.4.952watiko2016-02-22
| | | | | | | | | | | | | | | | | | | | | Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'. https://github.com/vim/vim/commit/6cd1345307440491580e5e86cb82c54ee9a46baa
* | | Merge #4265 'vim-patch:7.4.925'.Justin M. Keyes2016-03-02
|\ \ \
| * | | option_defs.h: Introduce SHM_ABBREVIATIONSwatiko2016-02-17
| | | | | | | | | | | | | | | | Helped-by: ZyX <kp-pav@yandex.ru>
| * | | option_defs.h: Fix "set shm+=a"watiko2016-02-17
| | | |
| * | | option_defs.h: Improve coding stylewatiko2016-02-17
| | | |
| * | | vim-patch:7.4.925watiko2016-02-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: User may yank or put using the register being recorded in. Solution: Add the recording register in the message. (Christian Brabandt, closes vim/vim#470) https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
* | | | Merge #4231 'vim-patch:7.4.857'.Justin M. Keyes2016-03-02
|\ \ \ \
| * | | | vim-patch:7.4.857Jurica Bradaric2016-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Dragging the current tab with the mouse doesn't work properly. Solution: Take the current tabpage index into account. (Hirohito Higashi) https://github.com/vim/vim/commit/4a4b821085847651b71d8ad9fab9f180635cb453
* | | | | Trigger TabNew before TabEnterMarco Hinz2016-03-01
| | | | |
* | | | | Merge PR #3657 'Correct max numbers of args for some functions'Marco Hinz2016-03-01
|\ \ \ \ \
| * | | | | Tests: add function_spec.luaMarco Hinz2016-03-01
| | | | | |
| * | | | | Correct max numbers of args for some functionsMarco Hinz2016-03-01
|/ / / / / | | | | | | | | | | | | | | | Closes #3650.
* | | | | Fix :%s/\n//Marco Hinz2016-03-01
| | | | | | | | | | | | | | | | | | | | Fixes #4352.
* | | | | Doc: make definitions jumpableMarco Hinz2016-02-29
| | | | | | | | | | | | | | | | | | | | References #3640.
* | | | | Merge pull request #4304 from bfredl/yankBjörn Linse2016-02-29
|\ \ \ \ \ | | | | | | | | | | | | Add v:event variable and TextYankPost autocommand
| * | | | | clint.py: a function name starting with for is not a for statementBjörn Linse2016-02-29
| | | | | |
| * | | | | ops.c: breakout shared register type formatting codeBjörn Linse2016-02-29
| | | | | |
| * | | | | TextYankPost: add information to v:event and update testsBjörn Linse2016-02-29
| | | | | |
| * | | | | eval: add v:event, which will contain data events want to propagate to their ↵Björn Linse2016-02-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | receivers. Add helper functions dict_clear and dict_set_keys_readonly.
| * | | | | Add TextYankPost and TextDeletePost autocmdsShougo Matsushita2016-02-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reviewed by @watiko Ported from https://github.com/Silex/vim/commit/de53ab72c89affa8ba77536ed8920751c037d127
* | | | | | Tests: fix according to lualintMarco Hinz2016-02-29
|/ / / / /
* | | | | Merge pull request #4373 from justinmk/qfcrashJustin M. Keyes2016-02-28
|\ \ \ \ \ | | | | | | | | | | | | qf_fill_buffer: Avoid buffer overflow.
| * | | | | coverity/56808: STRING_OVERFLOWJustin M. Keyes2016-02-28
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | This was caught by FORTIFY_SOURCE (and coverity). Fixes #4371
* | | | | Merge pull request #3900 from ZyX-I/inf-nan-stringJustin M. Keyes2016-02-28
|\ \ \ \ \ | | | | | | | | | | | | Make it possible to eval() all floating-point values dumped by string()
| * | | | | ci: Disable -Wc11-extensions on FreeBSDZyX2016-02-28
| | | | | | | | | | | | | | | | | | | | | | | | Closes #4363.
| * | | | | documentation: Add notes to eval.txt and vim_diff.txtZyX2016-02-21
| | | | | |
| * | | | | runtime/msgpack: Fix msgpack#string that expects old string() behaviorZyX2016-02-02
| | | | | |
| * | | | | functests: Add string() function testsZyX2016-02-02
| | | | | |
| * | | | | eval: Return different values when dividing by zeroZyX2016-02-02
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #3263
| * | | | | eval: Use str2float() to represent inf and nan valuesZyX2016-02-02
| | | | | | | | | | | | | | | | | | Closes #3248
* | | | | | Merge pull request #4364 from ZyX-I/proper-e-termJustin M. Keyes2016-02-28
|\ \ \ \ \ \ | | | | | | | | | | | | | | Replace hack used to run TermOpen with nested modifier
| * | | | | | functests: Improve screen:expect error reportingZyX2016-02-28
| | | | | | |
| * | | | | | functests: Make test more robustZyX2016-02-28
| | | | | | |
| * | | | | | functests: Make sure that setting scrollback size works from TermOpenZyX2016-02-28
| | | | | | |
| * | | | | | main: Move term:// protocol name to a macrosZyX2016-02-28
| | | | | | |
| * | | | | | main: Make using :edit term:// run TermOpen eventZyX2016-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref #4306
| * | | | | | Revert "Merge pull request #4362 from justinmk/termopen"ZyX2016-02-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit b01db02de4753908b3595b5ada0a6929e595e930, reversing changes made to 62321e5132ed29b11f79c8a56ca172d56b9ac042.
* | | | | | | Merge pull request #4289 from phanimahesh/refactor/wconversion/ex_cmds2.cBjörn Linse2016-02-28
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Enable -Wconversion for ex_cmds2.c
| * | | | | | ex_cmds2.c:style: silence clint after -Wconversion changesJ Phani Mahesh2016-02-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | use ///< to document all struct and enum fields