# Jump to a specific category

**URL:** https://meta.discourse.org/t/jump-to-a-specific-category/387083
**Category:** Support
**Tags:** keyboard-shortcuts
**Created:** [October 29, 2025, 3:56pm UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083 "2025-10-29T15:56:36Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![arun](https://avatars.discourse-cdn.com/v4/letter/a/ee7513/32.png) [@arun](https://meta.discourse.org/u/arun)
#### Post date: [October 29, 2025, 3:56pm UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083/1 "2025-10-29T15:56:36Z")

</div>

Is there a keyboard shortcuts to jump to a specific category? The “G \> C” shortcut jumps only to the categories page.

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [October 29, 2025, 5:48pm UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083/2 "2025-10-29T17:48:23Z")

</div>

No, there’s not a shortcut for going to a specific category… you could use `/` to open search, type in a couple characters, then arrow down to the category but that’s a few steps more.

---

<div class="post-metadata">

### Author: ![arun](https://avatars.discourse-cdn.com/v4/letter/a/ee7513/32.png) [@arun](https://meta.discourse.org/u/arun)
#### Post date: [October 30, 2025, 5:48am UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083/3 "2025-10-30T05:48:31Z")

</div>

No problem, thanks for confirming. Is there a way to configure the ‘latest’ view for any category as the default?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [October 30, 2025, 3:38pm UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083/4 "2025-10-30T15:38:11Z")

</div>

You can add keyboard shortcuts in a theme component. Something like this in an intializer:

```js
export default {
  name: "setup-shortcuts",
  initialize() {
    withPluginApi("0.11.4", () => {
      KeyboardShortcuts.addShortcut("g 1", null, {
        path: "/c/community-wiki/developers/179",
      });
    });
  }
}

```

---

<div class="post-metadata">

### Author: ![arun](https://avatars.discourse-cdn.com/v4/letter/a/ee7513/32.png) [@arun](https://meta.discourse.org/u/arun)
#### Post date: [October 31, 2025, 2:46pm UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083/5 "2025-10-31T14:46:41Z")

</div>

Very interesting. Thank you. I don’t have access, because I am not an admin - just an user, but I’ll keep that in mind.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [November 30, 2025, 2:47pm UTC](https://meta.discourse.org/t/jump-to-a-specific-category/387083/6 "2025-11-30T14:47:31Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
