[neovim] branch debian/sid updated (ac75e90 -> d8b23f4)

James McCoy jamessan at debian.org
Wed Nov 22 03:09:00 UTC 2017


This is an automated email from the git hooks/post-receive script.

jamessan pushed a change to branch debian/sid
in repository neovim.

      from  ac75e90   releasing package neovim version 0.2.1-3
      adds  c46d6f8   version bump
      adds  860ecd7   vim-patch:8.0.0096: has('ttyin'), has('ttyout')
      adds  68bef0a   test: has("ttyin"), has("ttyout")
      adds  54cac30   test: startup_spec: cmd.exe escaping
      adds  e98bcf0   Merge #7465 has('ttyin'), has('ttyout')
      adds  a48e078   doc: 'clipboard': soft-remove autoselect* flags #7509
      adds  55d8967   tutor: some fixes (#7510)
      adds  9837a9c   compat: "v:count" distinct from "count" (#7407)
      adds  9baa7ca   test/oldtest: `count` is not special in Nvim #7407
      adds  d0b05e3   runtime: Fix syntax error in `runtime/syntax/tex.vim` (#7518)
      adds  314ff44   doc/vim_diff.txt: mention NormalNC
      adds  f5d4da0   :checkhealth : validate 'runtimepath' (#7526)
      adds  faa15c5   vim-patch:8.0.0218 (#7529)
      adds  4fa0970   vim-patch:8.0.0242 (#7532)
      adds  a2fdd0a   vim-patch:8.0.0237 (#7531)
      adds  8b199cb   health: add node health check
      adds  7890157   remote: add node.js as a remote plugin provider
      adds  eed10f7   use `provider#stderr_collector`
      adds  b6a603f   Merge #7458 'remote: add node host'
      adds  881f9e4   process_close(): uv_unref() detached processes (#7539)
      adds  69e3308   cmake: install runtime/rgb.txt
      adds  6b8c341   vim-patch: NA
      adds  7e8212c   vim-patch:8.0.0224
      adds  67a2207   vim-patch:8.0.0226
      adds  ea020f2   fix lint error
      adds  20c672a   Merge #7530 'vim-patch:8.0.0226 vim-patch:8.0.0224'
      adds  e6beb60   :terminal : fix crash on resize (#7547)
      adds  a43a573   health.vim: normalize slashes for script path (#7525)
      adds  d5b7f28   test/unit/path_spec: expect correct buffer size (#7514)
      adds  cf75de7   tui_spec: Convert nil to "" before formatting it
      adds  0407ddb   Use PRId64 to format Integer when calling api_set_error
      adds  b63cde9   tests: terminal: Assert for SIGWINCH handling before continuing
      adds  8d8212d   Merge pull request #7545 from jamessan/test-fixes
      adds  8fff2ef   vim-patch:8.0.0227 (#7548)
      adds  30a2183   doc: test/README.md: migrate wiki info (#7552)
      adds  67e4529   defaults: scrollback=10000 (#7556)
      adds  c5f001a   runtime: revert netrw update (#7557)
      adds  f8d40e7   health.vim: define highlights as `default` (#7560)
      adds  59b0d9f   doc: Fix pathshorten() example (#7571)
      adds  eacd788   :checkhealth: fix check for npm and yarn (#7569)
      adds  ee031eb   lint #7562
      adds  07931ed   tui: 'guicursor': use DECSCUSR for xterm-likes (#7576)
      adds  e8af34d   win: provider: Detect(): return *.cmd path (#7577)
      adds  d135ba9   os_open, os_stat: UV_EINVAL on NULL filename
      adds  bf3f0ef   os_nodetype: rework
      adds  f185c73   Merge #7561 'os_open: UV_EINVAL on NULL filename'
      adds  a6de144   'viewoptions': add "curdir" flag #7447
      adds  f19e5d6   tui: setrgbf/setrgbb: emit semicolons for VTE
      adds  6d2c30d   NVIM v0.2.2
       new  0f7a0d6   Merge tag 'v0.2.2' into debian/sid
       new  d8b23f4   Start changelog for 0.2.2-1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                                     |    2 +-
 debian/changelog                                   |   11 +
 runtime/CMakeLists.txt                             |    1 +
 runtime/autoload/health.vim                        |    8 +-
 runtime/autoload/health/nvim.vim                   |    2 +-
 runtime/autoload/health/provider.vim               |   62 +
 runtime/autoload/netrw.vim                         | 1372 ++++++++------------
 runtime/autoload/netrwSettings.vim                 |   10 +-
 runtime/autoload/provider/node.vim                 |   80 ++
 runtime/autoload/provider/ruby.vim                 |    2 +-
 runtime/autoload/remote/host.vim                   |    4 +
 runtime/doc/eval.txt                               |    5 +-
 runtime/doc/options.txt                            |   26 +-
 runtime/doc/pi_health.txt                          |   10 +-
 runtime/doc/pi_netrw.txt                           |  355 ++---
 runtime/doc/starting.txt                           |    2 +-
 runtime/doc/syntax.txt                             |    2 +-
 runtime/doc/vim_diff.txt                           |    3 +
 runtime/plugin/netrwPlugin.vim                     |   14 +-
 runtime/syntax/netrw.vim                           |   80 +-
 runtime/syntax/tex.vim                             |    2 +-
 runtime/syntax/tutor.vim                           |    4 +-
 runtime/tutor/en/vim-01-beginner.tutor             |    2 +-
 src/nvim/buffer.c                                  |    7 -
 src/nvim/eval.c                                    |   16 +-
 src/nvim/event/libuv_process.c                     |    2 +-
 src/nvim/event/process.c                           |    7 +
 src/nvim/ex_docmd.c                                |   21 +-
 src/nvim/ex_getln.c                                |    4 +-
 src/nvim/fileio.c                                  |   63 +-
 src/nvim/globals.h                                 |   27 +-
 src/nvim/main.c                                    |    6 +-
 src/nvim/option_defs.h                             |   21 +-
 src/nvim/options.lua                               |    4 +-
 src/nvim/os/fs.c                                   |   94 +-
 src/nvim/screen.c                                  |    4 +-
 src/nvim/testdir/test_cmdline.vim                  |   38 +
 src/nvim/testdir/test_fileformat.vim               |   16 +
 src/nvim/testdir/test_unlet.vim                    |    2 +-
 src/nvim/testdir/test_usercommands.vim             |  104 ++
 src/nvim/tui/input.c                               |    2 -
 src/nvim/tui/tui.c                                 |   26 +-
 src/nvim/version.c                                 |   14 +-
 src/nvim/vim.h                                     |  170 ++-
 src/nvim/window.c                                  |   18 +-
 test/README.md                                     |  216 ++-
 test/functional/core/startup_spec.lua              |   96 ++
 test/functional/eval/special_vars_spec.lua         |    7 +
 test/functional/ex_cmds/mkview_spec.lua            |   67 +
 test/functional/plugin/health_spec.lua             |    7 +
 test/functional/terminal/mouse_spec.lua            |   28 +-
 test/functional/terminal/scrollback_spec.lua       |    4 +-
 test/functional/terminal/window_split_tab_spec.lua |   91 +-
 test/unit/path_spec.lua                            |  132 +-
 54 files changed, 1805 insertions(+), 1568 deletions(-)
 create mode 100644 runtime/autoload/provider/node.vim
 create mode 100644 test/functional/core/startup_spec.lua
 create mode 100644 test/functional/ex_cmds/mkview_spec.lua

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-vim/neovim.git



More information about the pkg-vim-maintainers mailing list