Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge #6789 from ZyX-I/lua-path | Justin M. Keyes | 2017-06-27 |
|\ | | | | | lua: Add paths from &runtimepath to package.path and package.cpath | ||
| * | doc: Clarify documentation | ZyX | 2017-05-28 |
| | | |||
| * | lua: Use automatic determining of suffixes only for package.cpath | ZyX | 2017-05-28 |
| | | |||
| * | ci: Also lint lua code in src/nvim/lua | ZyX | 2017-05-25 |
| | | |||
| * | cmake: Rename RunTestsLint to RunLuacheck | ZyX | 2017-05-25 |
| | | |||
| * | doc: Add example plugin | ZyX | 2017-05-25 |
| | | |||
| * | lua: Add paths from &runtimepath to package.path and package.cpath | ZyX | 2017-05-25 |
| | | |||
| * | api/vim: Fix nvim_list_runtimepaths | ZyX | 2017-05-23 |
| | | | | | | | | | | | | | | | | It used to 1. Always omit last component in runtimepath. 2. Always omit trailing empty item and leave uninitialized memory in place of it. | ||
* | | socket.c: Disable Nagle's algorithm on TCP sockets (#6915) | David Galeano | 2017-06-27 |
| | | | | | | | | Reducing latency is more interesting than optimizing bandwidth for Nvim's typical use-cases. | ||
* | | scripts/pvscheck.sh: fix function rename | Justin M. Keyes | 2017-06-25 |
| | | |||
* | | scripts/pvscheck.sh: HACK: de-parallelize on CI | Justin M. Keyes | 2017-06-25 |
| | | | | | | | | https://github.com/neovim/bot-ci/pull/105#issuecomment-309282132 | ||
* | | scripts/pvscheck.sh: HACK: de-parallelize on CI | Justin M. Keyes | 2017-06-25 |
| | | | | | | | | References https://github.com/neovim/bot-ci/pull/105 | ||
* | | Merge pull request #5266 from bfredl/kbtree | Björn Linse | 2017-06-24 |
|\ \ | | | | | | | add kbtree_t and use it for bufhl | ||
| * | | bufhl: fix move | Björn Linse | 2017-06-24 |
| | | | |||
| * | | bufhl: some style cleanup | Björn Linse | 2017-06-24 |
| | | | |||
| * | | kbtree: make warning free and delete deprecated macros | Björn Linse | 2017-06-24 |
| | | | |||
| * | | kbtree: eliminate unneccesary heap allocation | Björn Linse | 2017-06-24 |
| | | | |||
| * | | kbtree: use proper structs | Björn Linse | 2017-06-24 |
| | | | |||
| * | | kbtree: allow iterators to start at arbitrary position | Björn Linse | 2017-06-24 |
| | | | |||
| * | | bufhl: use kbtree for bufhl | Björn Linse | 2017-06-24 |
| | | | |||
| * | | kbtree.h | timeyyy | 2017-06-24 |
|/ / | |||
* | | Merge #6914 from ZyX-I/func-def-trailing-error | Justin M. Keyes | 2017-06-21 |
|\ \ | | | | | | | Allow multiple function definitions in one :execute | ||
| * | | functests: Fix screen.lua supplying dedent additional argument | ZyX | 2017-06-21 |
| | | | |||
| * | | functests: Check that minimal distance between commands works | ZyX | 2017-06-21 |
| | | | |||
| * | | functests: Add tests | ZyX | 2017-06-21 |
| | | | |||
| * | | eval: Allow running next command after :endfunction | ZyX | 2017-06-20 |
| | | | | | | | | | | | | | | | This will still error out on `:endfunction | next`, but defining many functions in one `:execute` should be possible. | ||
| * | | functests: Refactor redir_exec | ZyX | 2017-06-20 |
| | | | |||
| * | | functests: Move function_spec to eval | ZyX | 2017-06-20 |
| | | | |||
| * | | eval: Error out when there is something after :endfunction | ZyX | 2017-06-20 |
| | | | | | | | | | | | | Ref #6844 | ||
* | | | Merge #6863 | Justin M. Keyes | 2017-06-19 |
|\ \ \ | |||
| * | | | coverity/112076: fixing "Explicit null dereferenced" | Chris Hall | 2017-06-20 |
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | if (oap->regname == 0 && oap->motion_type != kMTLineWise && oap->line_count == 0 && !oap->use_reg_one ){ then reg is not initialised and our call to set_clipboard will dereference NULL } | ||
* | | | coverity/155506: fixing "dereference null after check" (#6862) | Chris Hall | 2017-06-19 |
| | | | | | | | | | | | | | | | | | | | | | rbuffer_read_ptr may return a null if ptr == null && cnt == 0 && !out_data_decide_throttle(cnt) then we would have called out_data_append_to_screen(ptr, cnt, eof) which dereferences the null pointer. | ||
* | | | genappimage.sh: set CMAKE_INSTALL_MANDIR | Justin M. Keyes | 2017-06-19 |
| | | | | | | | | | | | | | | | | | | | | | | | | Avoids attempt to install manpage to system location. Also: - Don't attempt `nvim --version` until after it was built. - Remove unnecessary `mkdir`. | ||
* | | | vim-patch:7.4.2356 (#6880) | Shougo | 2017-06-19 |
| | | | | | | | | | | | | | | | | | | | | | Problem: Reading past end of line when using previous substitute pattern. (Dominique Pelle) Solution: Don't set "pat" only set "searchstr". https://github.com/vim/vim/commit/ea683da58cf9ecf3afab9d650d3d2da76e5298d3 | ||
* | | | Merge #6841 from alexgenco/ruby-host-prog | Justin M. Keyes | 2017-06-17 |
|\ \ \ | |||
| * | | | runtime: Add docs for g:ruby_host_prog | Alex Genco | 2017-06-17 |
| | | | | |||
| * | | | runtime: Allow overriding ruby host with g:ruby_host_prog | Alex Genco | 2017-06-17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows users who have per-project Ruby versions (e.g. with `rvm`) to pin to a particular gem installation. For example: `let g:ruby_host_prog = 'rvm system do neovim-ruby-host'` | ||
| * | | | runtime: Fix issue with Ruby health `latest_gem` determination | Alex Genco | 2017-06-17 |
| |/ / | | | | | | | | | | | | | | | | | | | Sometimes the `gem list` command used for finding the latest version of the `neovim` gem prints an error, which can throw off the `split()` call due to extra parenthesis. This locks down the split pattern to make conflicts less likely. | ||
* | | | Merge pull request #6898 from blueyed/pvscheck-fixes | James McCoy | 2017-06-17 |
|\ \ \ | |/ / |/| | | scripts/pvscheck.sh: fixes | ||
| * | | scripts/pvscheck.sh: fixes | Daniel Hahler | 2017-06-17 |
|/ / | | | | | | | [ci skip] | ||
* | | Update deps (#6885) | equal-l2 | 2017-06-17 |
| | | | | | | | | | | | | | | | | * Update libuv to 1.12.0 * Update msgpack-c to 2.13 * Update LuaJIT to 2.0.5 (82151a45 for a Windows build fix) * Update jemalloc to 4.5.0 * Update luv to 1.9.1-1 * Update gperf to 3.1 | ||
* | | Merge pull request #6860 from justinmk/coverity | James McCoy | 2017-06-15 |
|\ \ | | | | | | | coverity/155509: negative close() arg | ||
| * | | coverity/155509: negative close() arg | Justin M. Keyes | 2017-06-14 |
| | | | |||
* | | | Merge pull request #6896 from jamessan/clang-bump | James McCoy | 2017-06-15 |
|\ \ \ | | | | | | | | | ci: Bump clang version to 4.0 | ||
| * | | | ci: Bump clang version to 4.0 | James McCoy | 2017-06-15 |
| | | | | |||
* | | | | provider/clipboard: add tmux support (#6894) | Xu Cheng | 2017-06-15 |
|/ / / | |||
* | | | Merge pull request #6700 from bfredl/winhl | Björn Linse | 2017-06-14 |
|\ \ \ | | | | | | | | | window specific ui highlighting: part 2 | ||
| * | | | screen.c: fix lint | Björn Linse | 2017-06-14 |
| | | | | |||
| * | | | screen.c: make more highlights window specific | Björn Linse | 2017-06-14 |
|/ / / | |||
* | | | vim-patch:7.4.2190 (#6882) | Shougo | 2017-06-12 |
| | | | | | | | | | | | | | | | | | | | | | | | | Problem: When startup test fails it's not easy to find out why. GUI test fails with Gnome. Solution: Add the help entry matches to a list an assert that. Set $HOME for Gnome to create .gnome2 directory. https://github.com/vim/vim/commit/50fa8dd00c241fa0786fe92ecc02fee4e5d28e06 |