diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-29 14:25:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-29 14:25:57 +0200 |
commit | 8ae16aa92c2b583fa390bc00f6987a9e5ef45a41 (patch) | |
tree | 91cac7f1e0be4b721da02ebfe0d5aff3634fffb2 /runtime/doc/vim_diff.txt | |
parent | 5acda12419858da202ce7ea962fae75102a75b2b (diff) | |
parent | 5c08c8c00969b8945f1351f49b0afb7e3e8842fe (diff) | |
download | rneovim-8ae16aa92c2b583fa390bc00f6987a9e5ef45a41.tar.gz rneovim-8ae16aa92c2b583fa390bc00f6987a9e5ef45a41.tar.bz2 rneovim-8ae16aa92c2b583fa390bc00f6987a9e5ef45a41.zip |
Merge #7087 from justinmk/test-locale
test: force LC_ALL=en_US.UTF-8
Diffstat (limited to 'runtime/doc/vim_diff.txt')
-rw-r--r-- | runtime/doc/vim_diff.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 270e958609..23d597e333 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -79,8 +79,8 @@ Working intuitively and consistently is a major goal of Nvim. Examples: avoids features that cannot be provided on all platforms--instead that is delegated to external plugins/extensions. -- Test-only globals and functions such as test_autochdir(), test_settime(), - etc., are not exposed (because they don't exist). +- Vim's internal test functions (test_autochdir(), test_settime(), etc.) are + not exposed (nor implemented); instead Nvim has a robust API. ARCHITECTURE ~ @@ -89,6 +89,9 @@ stability and allows those plugins to work without blocking the editor. Even "legacy" Python and Ruby plugins which use the old Vim interfaces (|if_py| and |if_ruby|) run out-of-process. +Platform and I/O facilities are built upon libuv. Nvim benefits from libuv +features and bug fixes, and other projects benefit from improvements to libuv +by Nvim developers. FEATURES ~ |