diff --git a/docs/blog/2023-08-02-release-0.0.15.mdx b/docs/blog/2023-08-02-release-0.0.15.mdx index d3089d37c2..a972b45785 100644 --- a/docs/blog/2023-08-02-release-0.0.15.mdx +++ b/docs/blog/2023-08-02-release-0.0.15.mdx @@ -106,7 +106,7 @@ keys = [ For example, in the first binding will tell Rio to close the terminal every time that "q" key is pressed along with "super" (in MacOS the "super" key is "command"). -More info about custom key bindings in [docs/key-bindings](/docs/key-bindings/). +More info about custom key bindings in [docs/config/key-bindings](/docs/config/key-bindings/). ## Changelog of v0.0.15 along with 0.0.13 and 0.0.12 diff --git a/docs/docs/config/navigation.md b/docs/docs/config/navigation.md index 6bfb01fe95..b821ed46ac 100644 --- a/docs/docs/config/navigation.md +++ b/docs/docs/config/navigation.md @@ -5,7 +5,7 @@ language: 'en' - `hide-if-single` - Hide navigation UI if there is only one tab. It does not work for `NativeTab`. - `clickable` - Enable click on tabs to switch. -- `use-current-path` - Use same path whenever a new tab is created (Note: requires [`use-fork`](/docs/configuration-file/#use-fork) to be set to false). +- `use-current-path` - Use same path whenever a new tab is created (Note: requires [`use-fork`](/docs/config/use-fork) to be set to false). - `color-automation` - Set a specific color for the tab whenever a specific program is running, or in a specific directory. ```toml diff --git a/docs/docs/features/spawn-or-fork.md b/docs/docs/features/spawn-or-fork.md index a2d6ce06c8..428a583122 100644 --- a/docs/docs/features/spawn-or-fork.md +++ b/docs/docs/features/spawn-or-fork.md @@ -7,4 +7,4 @@ In POSIX-based systems, Rio spawn processes instead of forking due to some compa However you can also switch from spawn to fork, forking a process is faster than spawning a process. -See how to configure it in the advanced section [here](/docs/configuration-file). +See how to configure it in the advanced section [here](/docs/config). diff --git a/docs/docs/features/vi-mode.md b/docs/docs/features/vi-mode.md index 40a5de2099..e209f4cc73 100644 --- a/docs/docs/features/vi-mode.md +++ b/docs/docs/features/vi-mode.md @@ -9,7 +9,7 @@ By default you can launch Vi mode by using `alt` + `shift` + `space`. ![Demo Vi mode](/assets/features/demo-vi-mode.gif) -Below you can see the list of all default key bindings related to Vi mode. If you don't like of any specified key binding you can always turn off or modify (check [key bindings documentation section](/docs/key-bindings) for more information). +Below you can see the list of all default key bindings related to Vi mode. If you don't like of any specified key binding you can always turn off or modify (check [key bindings documentation section](/docs/config/key-bindings) for more information). | Trigger | Action | Condition | | :------------------------ | :------------------------- | :------------------- | diff --git a/docs/docs/install/windows.md b/docs/docs/install/windows.md index 92173e6f56..bdd430890a 100644 --- a/docs/docs/install/windows.md +++ b/docs/docs/install/windows.md @@ -20,7 +20,7 @@ There's a few things to note about the installer and the portable version: - The browser will ask if you want to keep the file, click "Keep" to save the installer/executable on your computer. - When opening the file, Windows will give you a warning, click "More info" and then "Run anyway" to run the installer/executable. -If you want to change the default shell to the new PowerShell platform, change the following line in your config file (see [Configuration file](/docs/configuration-file) for more information): +If you want to change the default shell to the new PowerShell platform, change the following line in your config file (see [Configuration file](/docs/config) for more information): ```toml shell = { program = "pwsh", args = ["--login"] }