File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Original file line number Diff line number Diff line change 15
15
Vim is a text editor which uses keyboard shortcuts for editing instead of menus
16
16
or icons. There exist a couple of plugins and settings for the VIM editor to
17
17
aid python development. If you only develop in Python, a good start is to set
18
- the default settings for indentation and linewrapping to values compliant with
18
+ the default settings for indentation and line-wrapping to values compliant with
19
19
`PEP 8 <http://www.python.org/dev/peps/pep-0008/ >`_. In your home directory,
20
20
open a file called `.vimrc ` and add the following lines: ::
21
21
@@ -151,7 +151,7 @@ Create a virtual environment for a project::
151
151
$ cd my_project
152
152
$ virtualenv venv
153
153
154
- ``virtualenv venv `` will create a folder in the currect directory
154
+ ``virtualenv venv `` will create a folder in the current directory
155
155
which will contain the Python executable files, and a copy of the ``pip ``
156
156
library which you can use to install other packages. The name of the
157
157
virtual environment (in this case, it was ``venv ``) can be anything;
You can’t perform that action at this time.
0 commit comments