You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# vscode-python-autohint README
1
+
# Python Type Hint
2
2
3
3
Provides type hint auto-completion for Python.
4
4
@@ -10,12 +10,16 @@ Provides type hint auto-completion for Python.
10
10
11
11
* Searches Python files in the workspace for type estimation purposes.
12
12
13
+
* Can provide completion items for the typing module if it is imported.
14
+
13
15
## Installation
14
16
15
17
Get this extension from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=).
16
18
17
19
## Known Issues
18
20
19
-
* The difference between classes and function calls when detecting types is determined by the first letter being upper case (unless the class or function is defined in the currently edited document).
21
+
* The difference between function and class constructor calls when detecting types is determined by the first letter being upper case (unless the class or function is defined in the currently edited document).
22
+
23
+
* Up to 20 files within in the workspace are searched at a time. The limit is by design to keep the extension light weight, but there's probably a better solution.
0 commit comments