diff options
author | Nathan Long <him@nathanmlong.com> | 2018-07-22 21:06:27 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-07-23 03:06:27 +0200 |
commit | cdbfdcfcc484340f89a0bf3bd2e97dcf95f15625 (patch) | |
tree | 74a84e52d59c6fe77fa075c171343e542a5bcd8d | |
parent | 765711e27237a5b0e22691bd12220a8557aab146 (diff) | |
download | rneovim-cdbfdcfcc484340f89a0bf3bd2e97dcf95f15625.tar.gz rneovim-cdbfdcfcc484340f89a0bf3bd2e97dcf95f15625.tar.bz2 rneovim-cdbfdcfcc484340f89a0bf3bd2e97dcf95f15625.zip |
doc: README: "Transitioning from Vim" note (#8763)
-rw-r--r-- | README.md | 35 |
1 files changed, 20 insertions, 15 deletions
@@ -29,6 +29,21 @@ for more information. [](https://waffle.io/neovim/neovim/metrics) +Features +-------- + +- Modern [GUIs](https://github.com/neovim/neovim/wiki/Related-projects#gui) +- [API](https://github.com/neovim/neovim/wiki/Related-projects#api-clients) + access from any language including clojure, lisp, go, haskell, lua, + javascript, perl, python, ruby, rust. +- Embedded, scriptable [terminal emulator](https://neovim.io/doc/user/nvim_terminal_emulator.html) +- Asynchronous [job control](https://github.com/neovim/neovim/pull/2247) +- [Shared data (shada)](https://github.com/neovim/neovim/pull/2506) among multiple editor instances +- [XDG base directories](https://github.com/neovim/neovim/pull/3470) support +- Compatible with most Vim plugins, including Ruby and Python plugins. + +See [`:help nvim-features`][nvim-features] for the full list! + Install from source ------------------- @@ -57,6 +72,11 @@ Pre-built packages for Windows, macOS, and Linux are found at the Managed packages are in [Homebrew], [Debian], [Ubuntu], [Fedora], [Arch Linux], [Gentoo], and [more](https://github.com/neovim/neovim/wiki/Installing-Neovim)! +Transitioning from Vim +-------------------- + +See [`:help nvim-from-vim`](https://neovim.io/doc/user/nvim.html#nvim-from-vim) for instructions. + Project layout -------------- @@ -76,21 +96,6 @@ Project layout ├─ third-party/ cmake subproject to build dependencies └─ test/ tests (see test/README.md) -Features --------- - -- Modern [GUIs](https://github.com/neovim/neovim/wiki/Related-projects#gui) -- [API](https://github.com/neovim/neovim/wiki/Related-projects#api-clients) - access from any language including clojure, lisp, go, haskell, lua, - javascript, perl, python, ruby, rust. -- Embedded, scriptable [terminal emulator](https://neovim.io/doc/user/nvim_terminal_emulator.html) -- Asynchronous [job control](https://github.com/neovim/neovim/pull/2247) -- [Shared data (shada)](https://github.com/neovim/neovim/pull/2506) among multiple editor instances -- [XDG base directories](https://github.com/neovim/neovim/pull/3470) support -- Compatible with most Vim plugins, including Ruby and Python plugins. - -See [`:help nvim-features`][nvim-features] for the full list! - License ------- |