Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 211b420

Browse files
committed
Updated readme and package to point to the new home page
1 parent 2e30355 commit 211b420

File tree

2 files changed

+38
-35
lines changed

2 files changed

+38
-35
lines changed

README.md

+32-33
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,54 @@
1-
# Python
1+
# [Python](http://donjayamanne.github.io/pythonVSCode/)
22
Linting, Debugging (multi-threaded, web apps, remote), Intellisense, auto-completion, code formatting, snippets, unit testing, and more.
33

4-
##[Documentation](https://github.com/DonJayamanne/pythonVSCode/wiki)
5-
###Getting Started
4+
##Quick Start
65
* Install the extension
7-
* If using a custom Python Version or a Virtual Environment, then configure the path to the python executable in settings.json ([further details here](https://github.com/DonJayamanne/pythonVSCode/wiki/Python-Path-and-Version#python-version-used-for-intellisense-autocomplete-linting-formatting-etc))
8-
###[Troubleshooting guide](https://github.com/DonJayamanne/pythonVSCode/wiki/Troubleshooting)
6+
* If Python is in the current path
7+
+ You're ready to use it.
8+
* If using a custom Python Version or a Virtual Environment
9+
+ Configure the path to the python executable in python.pythonPath of the settings.json file ([further details here](https://github.com/DonJayamanne/pythonVSCode/wiki/Python-Path-and-Version#python-version-used-for-intellisense-autocomplete-linting-formatting-etc))
910

10-
###Feature Requests and contributions
11-
* Contributions are always welcome. Fork it, make the changes and create a pull request
12-
* Your feedback will make this a better product, so all feedback is appreciated and welcome.
11+
For further information and details continue through to the [documenetation](https://github.com/DonJayamanne/pythonVSCode/wiki).
12+
13+
##Feature Requests and contributions
14+
* Contributions are always welcome. Fork it, modify it and create a pull request.
15+
* Any and all feedback is appreciated and welcome.
1316
+ Please feel free to [add suggestions here](https://github.com/DonJayamanne/pythonVSCode/issues/183)
1417

15-
###Roadmap
18+
##Features
19+
* Linting (Prospector, PyLint, Pep8, Flake8, pydocstyle with config files and plugins)
20+
* Intellisense (autocompletion)
21+
* Auto indenting
22+
* Code formatting (autopep8, yapf, with config files)
23+
* Renaming, Viewing references, and code navigation
24+
* View signature and similar by hovering over a function or method
25+
* Excellent debugging suppot (variables, arguments, expressions, watch window, stack information, break points, remote debugging, mutliple threads)
26+
* Unit testing (unittests and nosetests, with config files)
27+
* Sorting imports
28+
* Snippets
29+
30+
##[Roadmap](https://github.com/DonJayamanne/pythonVSCode/issues/183)
1631
_Please note, not all of these feature may be developed.
17-
Your feedback is crucial in prioritizing the items and in determining whether we focus our attention to some other feature request(s)._
32+
Your feedback is crucial in prioritizing the items and in determining whether we shift focus our attention to some other feature request(s)._
1833
* Intellisense and Linting
1934
+ Performance improvements
2035
+ Linting as you type
2136
+ Context actions for some linter messages
22-
* Miscellaneous tools
23-
+ Code coverage
24-
+ Profiler
25-
* Remote Interpretter
26-
* Integrating IPython
37+
+ Remote Interpretter
2738
* Miscellaneous IDE enhancements
2839
+ Code Refactoring
2940
+ Autogenerate docstring
3041
+ Documentation viewer
3142
+ Improved integration of Unit Tests
43+
* Integration
44+
+ Code coverage
45+
+ Profiler
46+
+ Integrating IPython
3247
* Debugging enhancements
3348
+ Integration with VS Code Terminal window
3449
+ Securely debugging Python applications in the cloud (Azure, AWS or Google Cloud)
3550
+ Remote debugging over SSH
3651

37-
##Features
38-
* Linting (Prospector, PyLint, Pep8, Flake8, pydocstyle with config files and plugins)
39-
* Intellisense and autocompletion
40-
* Auto indenting
41-
* Code formatting (autopep8, yapf, with config files)
42-
* Renaming, Viewing references, Going to definitions, Go to Symbols
43-
* View signature and similar by hovering over a function or method
44-
* Debugging with support for local variables, arguments, expressions, watch window, stack information, break points
45-
* Debugging Multiple threads (Web Applications - Flask, etc) and expanding values (on Windows and Mac)
46-
* Debugging remote processes (attaching to local and remote process)
47-
* Debugging with support for shebang (windows)
48-
* Debugging with custom environment variables
49-
* Unit testing (unittests and nosetests, with config files)
50-
* Sorting imports
51-
* Snippets
52-
5352
##[Issues and Feature Requests](https://github.com/DonJayamanne/pythonVSCode/issues)
5453

5554
## Feature Details
@@ -111,12 +110,12 @@ Your feedback is crucial in prioritizing the items and in determining whether we
111110
## Change Log
112111

113112
### Version 0.3.12
114-
* Changes to how linters and formatters are executed (optimizations and changes to settings to separate out the command line arguments) [#178](https://github.com/DonJayamanne/pythonVSCode/issues/178)[#163](https://github.com/DonJayamanne/pythonVSCode/issues/163)
113+
* Changes to how linters and formatters are executed (optimizations and changes to settings to separate out the command line arguments) [#178](https://github.com/DonJayamanne/pythonVSCode/issues/178), [#163](https://github.com/DonJayamanne/pythonVSCode/issues/163)
115114
* Fix to support Unicode characters in debugger [#102](https://github.com/DonJayamanne/pythonVSCode/issues/102)
116115
* Added support for {workspaceRoot} in Path settings defined in settings.js [#148](https://github.com/DonJayamanne/pythonVSCode/issues/148)
117116
* Resolving path of linters and formatters based on python path defined in settings.json [#148](https://github.com/DonJayamanne/pythonVSCode/issues/148)
118117
* Better handling of Paths to python executable and related tools (linters, formatters) in virtual environments [#148](https://github.com/DonJayamanne/pythonVSCode/issues/148)
119-
* Added support for configurationDone event in debug adapter [#168](https://github.com/DonJayamanne/pythonVSCode/issues/168)[#145](https://github.com/DonJayamanne/pythonVSCode/issues/145)
118+
* Added support for configurationDone event in debug adapter [#168](https://github.com/DonJayamanne/pythonVSCode/issues/168), [#145](https://github.com/DonJayamanne/pythonVSCode/issues/145)
120119

121120
### Version 0.3.11
122121
* Added support for telemetry [#156](https://github.com/DonJayamanne/pythonVSCode/issues/156)

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
22
"name": "python",
33
"displayName": "Python",
4-
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, auto-completion, code formatting, snippets, and more.",
4+
"description": "Linting, Debugging (multi-threaded, remote), Intellisense, code formatting, snippets, and more.",
55
"version": "0.3.13",
66
"publisher": "donjayamanne",
7+
"author": {
8+
"name": "Don Jayamanne",
9+
"email": "[email protected]"
10+
},
711
"license": "MIT",
8-
"homepage": "https://github.com/DonJayamanne/pythonVSCode/blob/master/README.md",
12+
"homepage": "http://donjayamanne.github.io/pythonVSCode/",
913
"repository": {
1014
"type": "git",
1115
"url": "https://github.com/DonJayamanne/pythonVSCode"

0 commit comments

Comments
 (0)