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: user-interface.qmd
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,17 @@ The Positron interface provides a flexible environment for data science that can
6
6
7
7
## Basic overview
8
8
9
-
This section outlines the core layout elements of Positron’s interface. Each section plays a distinct role in supporting coding, data exploration, and model development, giving you full control over your data science environment.
9
+
This section outlines the core layout elements of Positron’s interface. Each section plays a distinct role in writing code, running code, and understanding your results, giving you full control over your data science environment.
10
10
11
11
+
12
12
13
13
- The **Activity Bar** provides quick access to switch between core views such as Explorer, Search, [Source Control](git.qmd), and [Extensions](extensions.qmd).
14
14
- The **Primary Side Bar** is on the left by default and shows you different views depending on what you have chosen in the Activity Bar. When you choose the Explorer icon, this pane provides the file explorer to navigate your project directory and the outline. When you choose the Assistant icon, this pane provides access to [Positron Assistant](assistant.qmd)
15
-
- The **Editor** is in the upper central area by default, and is where you write, debug, and refine your code. Whether in Python or R, the editor delivers a full-featured IDE experience tailored to data science workflows. For editor controls, refer to [VS Code Editor Basics](https://code.visualstudio.com/docs/editing/codebasics).
15
+
- The **Editor** is in the upper central area by default, and is where you writeyour code. For editor controls, refer to [VS Code Editor Basics](https://code.visualstudio.com/docs/editing/codebasics).
16
16
- The **Panel** is below the editor by default and contains the [Console](#console) and the [Terminal](https://code.visualstudio.com/docs/terminal/basics). You can also access logs from [Output](troubleshooting.qmd#output-panel) channels in the Panel.
17
17
- The **Secondary Side Bar** is on the right by default. You can switch between the Session pane (where you can explore the variables you have defined and the plots you have created), the [Connections](connections-pane.qmd) pane, the [Help](help-pane.qmd) pane, and the Viewer pane.
18
18
19
-
The **Title Bar** at the very top shows the active file and project, along with window controls. Below it, the **Top Bar** provides global project tools such as file search, the project switcher, and the interpreter selector with the ability to start, stop, and switch interpreters. The **Status Bar** at the botton of the window displays details such as your git branch, language mode, and cursor position.
19
+
The **Title Bar** at the very top of the window shows the active file and project, along with window controls. Below it, the **Top Bar** provides global project tools such as file search, the project switcher, and the interpreter selector with the ability to start, stop, and switch interpreters. The **Status Bar** at the botton of the window displays details such as your git branch, language mode, and cursor position.
20
20
21
21
You can toggle most of these components in and out of view using commands such as _View: Toggle Primary Side Bar Visibility_, _View: Toggle Status Bar Visibility_, and others.
22
22
@@ -61,12 +61,14 @@ The Command Palette makes it easy to open files without using the file explorer.
61
61
62
62
Press {{< kbd mac=Command-P win=Ctrl-P linux=Ctrl-P >}} to open the file picker. Start typing part of a file name to see matching files. Use the arrow keys to select a file, then press {{< kbd Enter >}} to open the selected file.
63
63
64
-
You can also:
64
+
You can also use:
65
65
66
-
- type {{< kbd > >}} to switch to command mode
67
-
- type {{< kbd @ >}} to search for symbols in the current file
68
-
- type {{< kbd # >}} to search for symbols across the workspace
69
-
- type {{< kbd : >}} followed by a line number to jump to that line
66
+
| Key | Action |
67
+
| --- | ------ |
68
+
| {{< kbd \> >}} | Switch to command mode |
69
+
| {{< kbd @ >}} | Search for symbols in the current file |
70
+
| {{< kbd # >}} | Search for symbols across the workspace |
71
+
| {{< kbd : >}} followed by a line number | Jump to that line |
0 commit comments