From 1b92d31fc4b09f18f0606062f06fe48202146b96 Mon Sep 17 00:00:00 2001 From: Jeff Heaton Date: Tue, 18 Dec 2018 10:14:37 -0500 Subject: [PATCH] Minor English changes (#2357) --- docs/_posts/2018-09-27-use-vim-as-a-python-ide.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/_posts/2018-09-27-use-vim-as-a-python-ide.md b/docs/_posts/2018-09-27-use-vim-as-a-python-ide.md index 082361f29..1b11e075e 100644 --- a/docs/_posts/2018-09-27-use-vim-as-a-python-ide.md +++ b/docs/_posts/2018-09-27-use-vim-as-a-python-ide.md @@ -29,7 +29,7 @@ Each of the following sections will be covered: ### Enable language layer -To add python language support in SpaceVim, you need to enable `lang#python` layer. Just press `SPC f v d` to open +To add python language support in SpaceVim, you need to enable the `lang#python` layer. Press `SPC f v d` to open SpaceVim configuration file, and add following configuration: ```toml @@ -41,17 +41,16 @@ for more info, you can read the [lang#python](../layers/lang/python/) layer docu ### Code completion -Base on which completion engine is used, `lang#python` layer load the jedi plugin automatically. +`lang#python` layer will load the jedi plugin automatically, unless overriden in your `init.toml`. The completion menu will be opened as you type. ![complete python code](https://user-images.githubusercontent.com/13142418/46339650-f5a49280-c665-11e8-86d4-20944ec23098.png) -### Syntax lint +### Syntax linting 1. [neomake](https://github.com/neomake/neomake) - Asynchronous linting and make framework for Neovim/Vim -I am maintainer of javac maker in neomake, the javac maker support maven project, gradle project or eclipse project. -also you can set the classpath. +The javac maker in neomake supports maven projects, gradle projects or eclipse projects. You can also set the classpath. ### Import packages