22Linting, Debugging (multi threaded, web apps), Intellisense, auto-completion, code formatting, snippets, unit testing, and more.
33Works on both Windows and Mac.
44
5+ ##[ Documentation] ( https://github.com/DonJayamanne/pythonVSCode/wiki )
6+
57##Features
68* Linting (PyLint, Pep8, Flake8 with config files and plugins)
79* Intellisense and autocompletion
@@ -27,7 +29,7 @@ Works on both Windows and Mac.
2729* - Find all references
2830* - View Signature
2931* - Sorting Import statements (use "Python: Sort Imports" command)
30- * Intellisense and Autocomplete
32+ * [ Intellisense and Autocomplete] ( https://github.com/DonJayamanne/pythonVSCode/wiki/Autocomplete-Intellisense )
3133* - Full intellisense
3234* - Support for docstring
3335* - Ability to include custom module paths (e.g. include paths for libraries like Google App Engine, etc)
@@ -38,11 +40,11 @@ Works on both Windows and Mac.
3840 " C:/Program Files (x86)/Google/google_appengine" ,
3941 " C:/Program Files (x86)/Google/google_appengine/lib" ]
4042```
41- * Code formatting
43+ * [ Code formatting] ( https://github.com/DonJayamanne/pythonVSCode/wiki/Formatting )
4244* - Use either yapf or autopep8 for code formatting (defaults to autopep8)
4345* - auutopep8 configuration files supported
4446* - yapf configuration files supported
45- * Linting
47+ * [ Linting] ( https://github.com/DonJayamanne/pythonVSCode/wiki/Linting )
4648* - It can be turned off (default is turn it on and use pylint)
4749* - pylint can be turned on/off (default is on), supports standard configuaration files
4850* - pep8 can be turned on/off (default is off), supports standard configuaration files
@@ -53,7 +55,7 @@ Works on both Windows and Mac.
5355``` json
5456"python.linting.pylintPath" : " pylint --load-plugins pylint_django"
5557```
56- * Debuggging
58+ * [ Debuggging] ( https://github.com/DonJayamanne/pythonVSCode/wiki/Debugging )
5759* - Watch window
5860* - Evaluate Expressions
5961* - Step through code (Step in, Step out, Continue)
@@ -100,6 +102,9 @@ Works on both Windows and Mac.
100102
101103## Change Log
102104
105+ ### Version 0.2.6
106+ * Updated readme
107+
103108### Version 0.2.5
104109* Added support for conditional break points
105110* Added ability to optionally display the shell window (Windows Only, Mac is coming soon)
0 commit comments