Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | *: Fix some typos found by oni-link | ZyX | 2017-11-06 |
| | |||
* | unittests: Add tests for vim_str2nr | ZyX | 2017-11-06 |
| | |||
* | charset: Move vim_str2nr flags from vim.h to charset.h | ZyX | 2017-11-06 |
| | |||
* | viml/parser/expressions: Briefly document some differences | ZyX | 2017-11-06 |
| | |||
* | api/vim: Add “len” dictionary key | ZyX | 2017-11-06 |
| | | | | | This allows determining where parsing ended which may be needed for e.g. parsing `:echo` with that API function. | ||
* | tests: Add missing test cases | ZyX | 2017-11-06 |
| | |||
* | api/vim,functests: Add tests for nvim_parse_expression, fix found bugs | ZyX | 2017-11-06 |
| | |||
* | vim/api: Actually dump AST, fix some bugs in nvim_parse_expression | ZyX | 2017-11-06 |
| | |||
* | api/vim: Create part of nvim_parse_expression function | ZyX | 2017-11-06 |
| | |||
* | charset: Refactor vim_str2nr | ZyX | 2017-11-06 |
| | |||
* | tests: Fix testlint errors | ZyX | 2017-11-06 |
| | |||
* | ex_getln: Fix variable name which is wrong after the merge | ZyX | 2017-10-30 |
| | |||
* | *: Fix linter errors | ZyX | 2017-10-30 |
| | | | | Big function in expressions.c may be refactored, if I ever catch the idea how to split it right. | ||
* | Merge branch 'master' into expression-parser | ZyX | 2017-10-30 |
|\ | |||
| * | Merge #7444 'vim-patch: test :profile' | Justin M. Keyes | 2017-10-29 |
| |\ | |||
| | * | vim-patch:8.0.0944 | Justin M. Keyes | 2017-10-29 |
| | | | | | | | | | | | | | | | | | | | | | | | | Problem: Test_profile is a little bit flaky. Solution: Accept a match when self and total time are the same. (James McCoy, closes vim/vim#1972) https://github.com/vim/vim/commit/d21b16f3c0c676bfe3a37aef1ac3118e1ecded60 | ||
| | * | fix TEST_FILE=test_profile.res make oldtest failed | ckelsel | 2017-10-27 |
| | | | |||
| | * | vim-patch:8.0.0196 | ckelsel | 2017-10-27 |
| | | | | | | | | | | | | | | | | | | | | | | | | Problem: The test for :profile is slow and does not work on MS-Windows. Solution: Use the "-es" argument. (Dominique Pelle) Swap single and double quotes for system() https://github.com/vim/vim/commit/c011a3d083001bcd9853b4447422f1819f3cee2f | ||
| | * | vim-patch:8.0.0194 | ckelsel | 2017-10-27 |
| | | | | | | | | | | | | | | | | | | | | | Problem: Profile tests fails if total and self time are equal. Solution: Make one time optional. https://github.com/vim/vim/commit/e32bbded641a5da0263ecf82f9ccc95a8e0a089e | ||
| | * | vim-patch:8.0.0189 | ckelsel | 2017-10-27 |
| | | | | | | | | | | | | | | | | | | | | | Problem: There are no tests for the :profile command. Solution: Add tests. (Dominique Pelle, closes vim/vim#1383) https://github.com/vim/vim/commit/296b1f28ca9cedeb55872f306808b2214b519ce7 | ||
| * | | rpc: Don't delay notifications when request is pending (#6544) | Björn Linse | 2017-10-29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the old behavior, if a GUI makes a blocking request that requires user interaction (like nvim_input()), it would not get any screen updates. The client, not nvim, should decide how to handle notifications during a pending request. If an rplugin wants to avoid async calls while a sync call is busy, it likely wants to avoid processing async calls while another async call also is handled as well. This may break the expectation of some existing rplugins. For compatibility, remote/define.vim reimplements the old behavior. Clients can opt-out by specifying `sync=urgent`. - Legacy hosts should be updated to use `sync=urgent`. They could add a flag indicating which async methods are always safe to call and which must wait until the main loop returns. - New hosts can expose the full asyncness, they don't need to offer both behaviors. ref #6532 ref #1398 d83868fe9071af1b4866594eac12f7aa0fa71b53 | ||
| * | | test/win: partially disable :terminal resize test (#7453) | Justin M. Keyes | 2017-10-29 |
| | | | |||
| * | | Merge #7173 'api/ui: externalize cmdline' | Justin M. Keyes | 2017-10-29 |
| |\ \ | | | | | | | | | | | | | closes #6162 | ||
| | * | | test: ui/cmdline_spec.lua: enable on Windows | Justin M. Keyes | 2017-10-29 |
| | | | | |||
| | * | | doc/ui.txt | Justin M. Keyes | 2017-10-29 |
| | | | | |||
| | * | | docs: breakout ui.txt from msgpack_rpc.txt | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: fix inputsecret() | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: interact with cmdline window | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: implement redraw! | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: turn nested cmdlines into a linked list | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: restructure and improve tests | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: documentation | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: rename cmdline_char to cmdline_special_char | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: extend "function" to generic "block" mechanism | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: disable some redraws | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: add support for highlighting | Björn Linse | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: lint | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: added indent | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: Add function block support | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: added cmdline level | Dongdong Zhou | 2017-10-26 |
| | | | | | | | | | | | | | | | | add cchar_to_string | ||
| | * | | ext_cmdline: change to use ui_call | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: fix firstc, change cmdline_leave to cmdline_hide | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: change the content format | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: use standard external ui functions | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: lint | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: add tests | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: Added cmdline prompt | Dongdong Zhou | 2017-10-26 |
| | | | | |||
| | * | | ext_cmdline: allow external ui to draw cmdline | Dongdong Zhou | 2017-10-26 |
| | |/ | |||
| * | | vim-patch:8.0.0206 (#7446) | KunMing Xie | 2017-10-28 |
| | | | | | | | | | | | | | | | | | | Problem: Test coverage for :retab insufficient. Solution: Add test for :retab. (Dominique Pelle, closes vim/vim#1391) https://github.com/vim/vim/commit/8822744b4d9d40aa1fd59870a8bdd7c64c59a42b | ||
| * | | Merge #7440 "terminal: adjust for 'number'" | Justin M. Keyes | 2017-10-28 |
| |\ \ | | | | | | | | | | | | | closes #5310 |