diff options
author | Aaron O'Leary <eeaol@leeds.ac.uk> | 2015-09-01 11:08:28 +0100 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-09-01 15:38:35 -0400 |
commit | 82c194d33b3a40b6da5bbcf12807771a6a9f7ef8 (patch) | |
tree | 690d1ddf8992dca200ad3f54b031d49554d6242f /runtime | |
parent | 73db02b99c07d933a2bbbb9d4a29022699b436ab (diff) | |
download | rneovim-82c194d33b3a40b6da5bbcf12807771a6a9f7ef8.tar.gz rneovim-82c194d33b3a40b6da5bbcf12807771a6a9f7ef8.tar.bz2 rneovim-82c194d33b3a40b6da5bbcf12807771a6a9f7ef8.zip |
doc: fix some typos in nvim docs #3280
Reviewed-by: Michael Reed <Pyrohh@users.noreply.github.com>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/nvim_provider.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/nvim_provider.txt b/runtime/doc/nvim_provider.txt index f6c919c592..a737d51ac4 100644 --- a/runtime/doc/nvim_provider.txt +++ b/runtime/doc/nvim_provider.txt @@ -29,19 +29,19 @@ clipboard functions account for more than 1k lines of C source code (and that is just on ui.c), all to peform two tasks that are now accomplished with simple shell commands such as xclip or pbcopy/pbpaste. -The other example is Python scripting support: Vim has three files dedicated -to embed the Python interpreter: if_python.c, if_python3.c and if_py_both.h. +The other example is Python scripting support: Vim has three files dedicated to +embedding the Python interpreter: if_python.c, if_python3.c and if_py_both.h. Together these files sum about 9.5k lines of C source code. On Nvim, Python scripting is performed by an external host process that is running 2k sloc Python program. In a perfect world, we would implement Python and clipboard integration in pure vimscript and without touching the C code. Unfortunately we can't achieve -these goals without severly compromising backwards compatibility with Vim. -Thats where providers comes to rescue. +these goals without severely compromising backwards compatibility with Vim. +That's where providers come to the rescue. -In essence, this infrastructure a simple framework that simplifies the task of -calling vimscript from C code, making it simpler to rewrite C functions that +In essence, this infrastructure is a simple framework that simplifies the task +of calling vimscript from C code, making it simpler to rewrite C functions that interact with external systems in pure vimscript. It is composed of two functions in eval.c: |