Skip to content

Commit fa3ea18

Browse files
committedApr 14, 2020
Fix issues in comments
1 parent 4b51b18 commit fa3ea18

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed
 

‎articles/stream-analytics/vs-code-intellisense.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: sujie
77
ms.date: 4/11/2020
88
ms.topic: conceptual
99
---
10-
# IntelliSense for Stream Analytics query language
10+
# IntelliSense in Azure Stream Analytics tools for Visual Studio Code
1111

1212
IntelliSense is available for [Stream Analytics Query Language](https://docs.microsoft.com/stream-analytics-query/stream-analytics-query-language-reference?toc=https%3A%2F%2Fdocs.microsoft.com%2Fazure%2Fstream-analytics%2Ftoc.json&bc=https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fazure%2Fbread%2Ftoc.json) in [Azure Stream Analytics tools for VS Code](https://marketplace.visualstudio.com/items?itemName=ms-bigdatatools.vscode-asa&ssr=false#overview). IntelliSense is a code-completion aid that includes a number of features: List Members, Parameter Info, Quick Info, and Complete Word. IntelliSense features are sometimes called by other names such as "code completion", "content assist", and "code hinting".
1313

@@ -19,7 +19,7 @@ The IntelliSense features in Stream Analytics tools for VS Code are powered by a
1919

2020
You can trigger IntelliSense in any editor window by typing a trigger character, such as the dot character `.`.
2121

22-
![intellisense autocompletion](./media/vs-code-intellisense/auto_completion.gif)
22+
![intellisense autocompletion](./media/vs-code-intellisense/auto-completion.gif)
2323

2424
> **Tip:** The suggestions widget supports CamelCase filtering, meaning you can type the letters which are upper cased in a method name to limit the suggestions. For example, "cra" will quickly bring up "createApplication".
2525
@@ -33,6 +33,7 @@ Stream Analytics tools for VS Code IntelliSense offers different types of comple
3333
| Functions | `build-in function`, `user defined function` |
3434
| Data Set Name| `input`, `output`, `intermediate result set`|
3535
| Data Set Column Name|`input`, `intermediate result set`|
36+
|
3637

3738
#### Name Completion
3839

@@ -42,21 +43,21 @@ While coding, you don't need to leave the editor to perform searches on job inpu
4243

4344
Note that you need to configure either local input or live input and save the configuration file to be able to use name completion.
4445

45-
![name completion](./media/vs-code-intellisense/name_completion.gif)
46+
![name completion](./media/vs-code-intellisense/name-completion.gif)
4647

4748
### Parameter Info
4849

4950
The IntelliSense **Parameter Info** option opens a parameters list that provides information about the number, names, and types of the parameters that are required by a function. The parameter in bold indicates the next parameter that is required as you type a function.
5051

5152
The parameter list is also displayed for nested functions. If you type a function as a parameter to another function, the parameter list displays the parameters for the inner function. Then, when the inner function parameter list is complete, the parameter list reverts to displaying the outer function parameters.
5253

53-
![parameter info](./media/vs-code-intellisense/parameter_info.gif)
54+
![parameter info](./media/vs-code-intellisense/parameter-info.gif)
5455

5556
### Quick Info
5657

5758
As provided by the language service, you can see **Quick Info** for each identifier in your code. Some examples of identifiers are input, output, an intermediate result set, or function. When you move the mouse pointer over an identifier, its declaration is displayed in a pop-up window. The properties and data schemas for inputs, if configured, and intermediate data set are shown.
5859

59-
![quick info](./media/vs-code-intellisense/quick_info.gif)
60+
![quick info](./media/vs-code-intellisense/quick-info.gif)
6061

6162
## Troubleshoot IntelliSense
6263

0 commit comments

Comments
 (0)