-
Notifications
You must be signed in to change notification settings - Fork 17
Document tab and group pinning #342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+37
−2
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,8 +1,8 @@ | ||||||||||
| --- | ||||||||||
| title: Tabs | ||||||||||
| description: >- | ||||||||||
| Organize your window into multiple terminal sessions with customizable tabs, | ||||||||||
| complete with titles and ANSI colors. | ||||||||||
| Organize terminal sessions with customizable tabs and groups, then pin | ||||||||||
| important tabs and groups at the front of the tab list. | ||||||||||
| --- | ||||||||||
| import { Tabs, TabItem } from '@astrojs/starlight/components'; | ||||||||||
| import VideoEmbed from '@components/VideoEmbed.astro'; | ||||||||||
|
|
@@ -127,6 +127,41 @@ Click a group's header to collapse or expand it. Collapsed groups hide their mem | |||||||||
| You can assign keyboard shortcuts for creating a group from the active or selected tabs and for removing tabs from a group in **Settings** > **Keyboard shortcuts**. | ||||||||||
| ::: | ||||||||||
|
|
||||||||||
| ## Pin tabs and groups | ||||||||||
|
|
||||||||||
| Pin frequently used tabs or tab groups to keep them at the front of the tab list. Pinned items form a leading section before unpinned tabs and groups, and you can reorder items within the pinned section. Pinning works in both the horizontal tab bar and the [vertical tabs](/terminal/windows/vertical-tabs/) panel. Warp restores the pinned state when you reopen the window. | ||||||||||
|
|
||||||||||
| ### Pin a tab | ||||||||||
|
|
||||||||||
| 1. Right-click the tab you want to keep at the front. | ||||||||||
| 2. Click **Pin tab**. | ||||||||||
|
|
||||||||||
| Warp moves the tab to the end of the pinned section. | ||||||||||
|
|
||||||||||
| :::note | ||||||||||
| If the tab belongs to a group, **Pin tab** removes the tab from its group and pins it independently. To keep the group together, pin the group instead. | ||||||||||
| ::: | ||||||||||
|
|
||||||||||
| ### Pin a group | ||||||||||
|
|
||||||||||
| 1. Right-click the group's header. | ||||||||||
| 2. Click **Pin group**. | ||||||||||
|
Comment on lines
+147
to
+148
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 [NIT] Numbered procedure steps should end with periods per the docs style guide.
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||||||||||
|
|
||||||||||
| Warp moves the entire group to the end of the pinned section as one block. | ||||||||||
|
|
||||||||||
| ### Unpin a tab or group | ||||||||||
|
|
||||||||||
| To return an item to the unpinned section: | ||||||||||
|
|
||||||||||
| * **Tab** - Right-click the pinned tab, then click **Unpin tab**. | ||||||||||
| * **Group** - Right-click the pinned group's header, then click **Unpin group**. | ||||||||||
|
|
||||||||||
| Warp moves the item to the beginning of the unpinned section. | ||||||||||
|
|
||||||||||
| :::note | ||||||||||
| You can assign keyboard shortcuts for pinning or unpinning the active tab or group in **Settings** > **Keyboard shortcuts**. | ||||||||||
| ::: | ||||||||||
|
|
||||||||||
| ## Move a tab to another window | ||||||||||
|
|
||||||||||
| You can pull a tab out of the tab bar to reorganize your windows, similar to a web browser: | ||||||||||
|
|
||||||||||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 [NIT] Numbered procedure steps should end with periods per the docs style guide.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lol this diff looks identical to before?