Add GetType subcommand for Python in docs
Be consistent in the order of features between languages.
This commit is contained in:
parent
7548b209f5
commit
9bf53fba7e
25
README.md
25
README.md
@ -699,26 +699,27 @@ Quick Feature Summary
|
|||||||
* Semantic auto-completion with automatic fixes
|
* Semantic auto-completion with automatic fixes
|
||||||
* Real-time diagnostic display
|
* Real-time diagnostic display
|
||||||
* Go to include/declaration/definition (`GoTo`, etc.)
|
* Go to include/declaration/definition (`GoTo`, etc.)
|
||||||
* Semantic type information for identifiers (`GetType`)
|
|
||||||
* Automatically fix certain errors (`FixIt`)
|
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
|
* Type information for identifiers (`GetType`)
|
||||||
|
* Automatically fix certain errors (`FixIt`)
|
||||||
|
|
||||||
### C♯
|
### C♯
|
||||||
|
|
||||||
* Semantic auto-completion
|
* Semantic auto-completion
|
||||||
* Real-time diagnostic display
|
* Real-time diagnostic display
|
||||||
* Go to declaration/definition (`GoTo`, etc.)
|
* Go to declaration/definition (`GoTo`, etc.)
|
||||||
* Semantic type information for identifiers (`GetType`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
|
* Type information for identifiers (`GetType`)
|
||||||
* Automatically fix certain errors (`FixIt`)
|
* Automatically fix certain errors (`FixIt`)
|
||||||
* Management of OmniSharp server instance
|
* Management of OmniSharp server instance
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
|
||||||
|
|
||||||
### Python
|
### Python
|
||||||
|
|
||||||
* Intelligent auto-completion
|
* Semantic auto-completion
|
||||||
* Go to definition (`GoTo`)
|
* Go to definition (`GoTo`)
|
||||||
* Reference finding (`GoToReferences`)
|
* Reference finding (`GoToReferences`)
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
|
* Type information for identifiers (`GetType`)
|
||||||
|
|
||||||
### Go
|
### Go
|
||||||
|
|
||||||
@ -729,15 +730,15 @@ Quick Feature Summary
|
|||||||
### JavaScript and TypeScript
|
### JavaScript and TypeScript
|
||||||
|
|
||||||
* Semantic auto-completion with automatic import insertion
|
* Semantic auto-completion with automatic import insertion
|
||||||
|
* Real-time diagnostic display
|
||||||
* Go to definition (`GoTo`, `GoToDefinition`, and `GoToDeclaration` are
|
* Go to definition (`GoTo`, `GoToDefinition`, and `GoToDeclaration` are
|
||||||
identical)
|
identical)
|
||||||
* Go to type definition (`GoToType`)
|
* Go to type definition (`GoToType`)
|
||||||
* Reference finding (`GoToReferences`)
|
* Reference finding (`GoToReferences`)
|
||||||
* Real-time diagnostic display
|
|
||||||
* Renaming symbols (`RefactorRename <new name>`)
|
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
* Type information for identifiers (`GetType`)
|
* Type information for identifiers (`GetType`)
|
||||||
* Automatically fix certain errors (`FixIt`)
|
* Automatically fix certain errors (`FixIt`)
|
||||||
|
* Renaming symbols (`RefactorRename <new name>`)
|
||||||
* Code formatting (`Format`)
|
* Code formatting (`Format`)
|
||||||
* Organize imports (`OrganizeImports`)
|
* Organize imports (`OrganizeImports`)
|
||||||
* Management of `TSServer` server instance
|
* Management of `TSServer` server instance
|
||||||
@ -747,8 +748,8 @@ Quick Feature Summary
|
|||||||
* Semantic auto-completion
|
* Semantic auto-completion
|
||||||
* Go to definition (`GoTo`, `GoToDefinition`, and `GoToDeclaration` are
|
* Go to definition (`GoTo`, `GoToDefinition`, and `GoToDeclaration` are
|
||||||
identical)
|
identical)
|
||||||
* Management of `racer` server instance
|
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
|
* Management of `racer` server instance
|
||||||
|
|
||||||
### Java
|
### Java
|
||||||
|
|
||||||
@ -756,14 +757,14 @@ Quick Feature Summary
|
|||||||
[feedback](#contact).
|
[feedback](#contact).
|
||||||
|
|
||||||
* Semantic auto-completion with automatic import insertion
|
* Semantic auto-completion with automatic import insertion
|
||||||
|
* Real-time diagnostic display
|
||||||
* Go to definition (`GoTo`, `GoToDefinition`, and `GoToDeclaration` are
|
* Go to definition (`GoTo`, `GoToDefinition`, and `GoToDeclaration` are
|
||||||
identical)
|
identical)
|
||||||
* Reference finding (`GoToReferences`)
|
* Reference finding (`GoToReferences`)
|
||||||
* Real-time diagnostic display
|
|
||||||
* Renaming symbols (`RefactorRename <new name>`)
|
|
||||||
* View documentation comments for identifiers (`GetDoc`)
|
* View documentation comments for identifiers (`GetDoc`)
|
||||||
* Type information for identifiers (`GetType`)
|
* Type information for identifiers (`GetType`)
|
||||||
* Automatically fix certain errors including code generation (`FixIt`)
|
* Automatically fix certain errors including code generation (`FixIt`)
|
||||||
|
* Renaming symbols (`RefactorRename <new name>`)
|
||||||
* Code formatting (`Format`)
|
* Code formatting (`Format`)
|
||||||
* Organize imports (`OrganizeImports`)
|
* Organize imports (`OrganizeImports`)
|
||||||
* Detection of java projects
|
* Detection of java projects
|
||||||
@ -1640,7 +1641,7 @@ Invoking this command on `s` returns `std::string => std::basic_string<char>`
|
|||||||
**NOTE:** Causes re-parsing of the current translation unit.
|
**NOTE:** Causes re-parsing of the current translation unit.
|
||||||
|
|
||||||
Supported in filetypes: `c, cpp, objc, objcpp, cuda, java, javascript,
|
Supported in filetypes: `c, cpp, objc, objcpp, cuda, java, javascript,
|
||||||
typescript`
|
python, typescript`
|
||||||
|
|
||||||
#### The `GetTypeImprecise` subcommand
|
#### The `GetTypeImprecise` subcommand
|
||||||
|
|
||||||
|
@ -923,9 +923,9 @@ C-family languages (C, C++, Objective C, Objective C++, CUDA) ~
|
|||||||
- Semantic auto-completion with automatic fixes
|
- Semantic auto-completion with automatic fixes
|
||||||
- Real-time diagnostic display
|
- Real-time diagnostic display
|
||||||
- Go to include/declaration/definition (|GoTo|, etc.)
|
- Go to include/declaration/definition (|GoTo|, etc.)
|
||||||
- Semantic type information for identifiers (|GetType|)
|
|
||||||
- Automatically fix certain errors (|FixIt|)
|
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
|
- Type information for identifiers (|GetType|)
|
||||||
|
- Automatically fix certain errors (|FixIt|)
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-c*
|
*youcompleteme-c*
|
||||||
@ -934,19 +934,20 @@ C♯ ~
|
|||||||
- Semantic auto-completion
|
- Semantic auto-completion
|
||||||
- Real-time diagnostic display
|
- Real-time diagnostic display
|
||||||
- Go to declaration/definition (|GoTo|, etc.)
|
- Go to declaration/definition (|GoTo|, etc.)
|
||||||
- Semantic type information for identifiers (|GetType|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
|
- Type information for identifiers (|GetType|)
|
||||||
- Automatically fix certain errors (|FixIt|)
|
- Automatically fix certain errors (|FixIt|)
|
||||||
- Management of OmniSharp server instance
|
- Management of OmniSharp server instance
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-python*
|
*youcompleteme-python*
|
||||||
Python ~
|
Python ~
|
||||||
|
|
||||||
- Intelligent auto-completion
|
- Semantic auto-completion
|
||||||
- Go to definition (|GoTo|)
|
- Go to definition (|GoTo|)
|
||||||
- Reference finding (|GoToReferences|)
|
- Reference finding (|GoToReferences|)
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
|
- Type information for identifiers (|GetType|)
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-go*
|
*youcompleteme-go*
|
||||||
@ -961,15 +962,15 @@ Go ~
|
|||||||
JavaScript and TypeScript ~
|
JavaScript and TypeScript ~
|
||||||
|
|
||||||
- Semantic auto-completion with automatic import insertion
|
- Semantic auto-completion with automatic import insertion
|
||||||
|
- Real-time diagnostic display
|
||||||
- Go to definition (|GoTo|, |GoToDefinition|, and |GoToDeclaration| are
|
- Go to definition (|GoTo|, |GoToDefinition|, and |GoToDeclaration| are
|
||||||
identical)
|
identical)
|
||||||
- Go to type definition (|GoToType|)
|
- Go to type definition (|GoToType|)
|
||||||
- Reference finding (|GoToReferences|)
|
- Reference finding (|GoToReferences|)
|
||||||
- Real-time diagnostic display
|
|
||||||
- Renaming symbols ('RefactorRename <new name>')
|
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
- Type information for identifiers (|GetType|)
|
- Type information for identifiers (|GetType|)
|
||||||
- Automatically fix certain errors (|FixIt|)
|
- Automatically fix certain errors (|FixIt|)
|
||||||
|
- Renaming symbols ('RefactorRename <new name>')
|
||||||
- Code formatting (|Format|)
|
- Code formatting (|Format|)
|
||||||
- Organize imports (|OrganizeImports|)
|
- Organize imports (|OrganizeImports|)
|
||||||
- Management of 'TSServer' server instance
|
- Management of 'TSServer' server instance
|
||||||
@ -981,8 +982,8 @@ Rust ~
|
|||||||
- Semantic auto-completion
|
- Semantic auto-completion
|
||||||
- Go to definition (|GoTo|, |GoToDefinition|, and |GoToDeclaration| are
|
- Go to definition (|GoTo|, |GoToDefinition|, and |GoToDeclaration| are
|
||||||
identical)
|
identical)
|
||||||
- Management of 'racer' server instance
|
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
|
- Management of 'racer' server instance
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
*youcompleteme-java*
|
*youcompleteme-java*
|
||||||
@ -992,14 +993,14 @@ Java ~
|
|||||||
feedback.
|
feedback.
|
||||||
|
|
||||||
- Semantic auto-completion with automatic import insertion
|
- Semantic auto-completion with automatic import insertion
|
||||||
|
- Real-time diagnostic display
|
||||||
- Go to definition (|GoTo|, |GoToDefinition|, and |GoToDeclaration| are
|
- Go to definition (|GoTo|, |GoToDefinition|, and |GoToDeclaration| are
|
||||||
identical)
|
identical)
|
||||||
- Reference finding (|GoToReferences|)
|
- Reference finding (|GoToReferences|)
|
||||||
- Real-time diagnostic display
|
|
||||||
- Renaming symbols ('RefactorRename <new name>')
|
|
||||||
- View documentation comments for identifiers (|GetDoc|)
|
- View documentation comments for identifiers (|GetDoc|)
|
||||||
- Type information for identifiers (|GetType|)
|
- Type information for identifiers (|GetType|)
|
||||||
- Automatically fix certain errors including code generation (|FixIt|)
|
- Automatically fix certain errors including code generation (|FixIt|)
|
||||||
|
- Renaming symbols ('RefactorRename <new name>')
|
||||||
- Code formatting (|Format|)
|
- Code formatting (|Format|)
|
||||||
- Organize imports (|OrganizeImports|)
|
- Organize imports (|OrganizeImports|)
|
||||||
- Detection of java projects
|
- Detection of java projects
|
||||||
@ -1890,7 +1891,7 @@ Invoking this command on 's' returns 'std::string => std::basic_string<char>'
|
|||||||
|
|
||||||
**NOTE:** Causes re-parsing of the current translation unit.
|
**NOTE:** Causes re-parsing of the current translation unit.
|
||||||
|
|
||||||
Supported in filetypes: 'c, cpp, objc, objcpp, cuda, java, javascript,
|
Supported in filetypes: 'c, cpp, objc, objcpp, cuda, java, javascript, python,
|
||||||
typescript'
|
typescript'
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user