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: docs/overview/code-editor-environment.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Office Scripts does not support the usage of external, third-party JavaScript li
29
29
30
30
IntelliSense is a set of Code Editor features that help you write code. It provides auto-complete, syntax error highlighting, and inline API documentation.
31
31
32
-
IntelliSense gives suggestions as you type, similar to the suggested text in Excel. Pressing the Tab or Enter key inserts the suggested member. Trigger IntelliSense at the current cursor location by pressing the Ctrl+Space keys. These suggestions are especially useful when completing a method. The method signature displayed by IntelliSense contains a list of arguments it needs, each argument's type, whether a given argument is required or optional, and the return type of the method.
32
+
IntelliSense gives suggestions as you type, similar to the suggested text in Excel. Pressing the <kbd>Tab</kbd> or <kbd>Enter</kbd> key inserts the suggested member. Trigger IntelliSense at the current cursor location by pressing the <kbd>Ctrl</kbd>+<kbd>Space</kbd> keys. These suggestions are especially useful when completing a method. The method signature displayed by IntelliSense contains a list of arguments it needs, each argument's type, whether a given argument is required or optional, and the return type of the method.
33
33
34
34
Hover the cursor over a method, class, or other code object to see more information. Hover over a syntax error or code suggestion, represented by a red or yellow squiggly line, to see suggestions on how to fix the problem. Often, IntelliSense provides a "Quick Fix" option to automatically change the code.
0 commit comments