Skip to content
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

Rename 'actions' in actions page to 'parameters' #536

Merged
merged 2 commits into from
May 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions TerminalDocs/customize-settings/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ This lets you navigate through your search matches.
{ "command": { "action": "findMatch", "direction": "prev" } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -223,7 +223,7 @@ Without the `target` field, the custom settings file will be opened.
{ "command": { "action": "openSettings", "target": "defaultsFile" }, "keys": "ctrl+alt+," },
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -296,7 +296,7 @@ _This command is not currently bound in the default settings_.
{ "command": { "action": "sendInput", "input": "\u001b[A" }, "keys": "" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -314,7 +314,7 @@ This closes the tab at a given index. If no index is provided, use the focused t

**Command name:** `closeTab`

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -332,7 +332,7 @@ This closes all tabs except for the one at an index. If no index is provided, us
{ "command": "closeOtherTabs" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -350,7 +350,7 @@ This closes the tabs following the tab at an index. If no index is provided, use
{ "command": "closeTabsAfter" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -389,7 +389,7 @@ This creates a new tab. Without any arguments, this will open the default profil
{ "command": { "action": "newTab", "index": 8 }, "keys": "ctrl+shift+9" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -417,7 +417,7 @@ This opens the tab to the right of the current one.
{ "command": "nextTab", "keys": "ctrl+tab" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -435,7 +435,7 @@ This opens the tab to the left of the current one.
{ "command": "prevTab", "keys": "ctrl+shift+tab" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -484,7 +484,7 @@ This opens a specific tab depending on the index.
{ "command": { "action": "switchToTab", "index": 8 }, "keys": "ctrl+alt+9" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -508,7 +508,7 @@ _This command is not currently bound in the default settings_.
{ "command": { "action": "renameTab", "title": null }, "keys": "" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -544,7 +544,7 @@ _This command is not currently bound in the default settings_.
{ "command": { "action": "setTabColor", "color": null }, "keys": "" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -578,7 +578,7 @@ This command moves the tab "backward" and "forward", which is equivalent to "lef
{ "command": { "action": "moveTab", "direction": "forward" } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -602,7 +602,7 @@ This creates a new window. Without any arguments, this will open the default pro
{ "command": "newWindow", "keys": "ctrl+shift+n" },
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -631,7 +631,7 @@ _This command is not currently bound in the default settings_.
{ "command": { "action": "renameWindow", "name": null }, "keys": "" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -709,7 +709,7 @@ This changes focus to a different pane depending on the direction. Setting the `
{ "command": { "action": "moveFocus", "direction": "previous" }, "keys": "ctrl+alt+left" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -751,7 +751,7 @@ This changes the size of the active pane.
{ "command": { "action": "resizePane", "direction": "up" }, "keys": "alt+shift+up" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -790,7 +790,7 @@ This halves the size of the active pane and opens another. Without any arguments
{ "command": { "action": "splitPane", "split": "left" } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -832,7 +832,7 @@ This copies the selected terminal content to your clipboard. If no selection exi
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+insert" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -869,7 +869,7 @@ This modifies an existing selection. If no selection exists, the key chord is se
{ "command": {"action": "updateSelection", "direction": "down", "mode": "buffer" }, "keys": "ctrl+shift+end" },
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -911,7 +911,7 @@ This scrolls the screen up by the number of rows defined by `"rowsToScroll"`. If
{ "command": "scrollUp", "keys": "ctrl+shift+up" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -929,7 +929,7 @@ This scrolls the screen down by the number of rows defined by `"rowsToScroll"`.
{ "command": "scrollDown", "keys": "ctrl+shift+down" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -997,7 +997,7 @@ This action can be used to manually clear the terminal buffer. This is useful fo
{ "command": { "action": "clearBuffer", "clear": "all" } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand All @@ -1022,7 +1022,7 @@ This changes the text size by a specified point amount.
{ "command": { "action": "adjustFontSize", "delta": -1 }, "keys": "ctrl+numpad_minus" }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -1056,7 +1056,7 @@ This changes the opacity of the window. If `relative` is set to true, it will ad
{ "command": { "action": "adjustOpacity", "relative": false, "opacity": 100 } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -1087,7 +1087,7 @@ Changes the active color scheme.

**Command name:** `setColorScheme`

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -1117,7 +1117,7 @@ This allows the user to export the text of the buffer to a file. If the file doe
{ "command": { "action": "exportBuffer" } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -1153,7 +1153,7 @@ _This command is not currently bound in the default settings_.
{ "keys": "", "command": { "action": "globalSummon" } }
```

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down Expand Up @@ -1260,7 +1260,7 @@ This action allows the user to bind multiple sequential actions to one command.

**Command name:** `multipleActions`

#### Actions
#### Parameters

| Name | Necessity | Accepts | Description |
| ---- | --------- | ------- | ----------- |
Expand Down