Software⏱️ 3 min read📅 2026-06-03

How to Fix: Keyboard shortcut for Jump to Previous View Location (Navigate back/forward) in IntelliJ IDEA

Navigate back/forward in IntelliJ IDEA using a custom keyboard shortcut.

Quick Answer: Create a new action in IntelliJ IDEA's Keymap settings and bind it to the desired key combination, such as Ctrl+Shift+Left/Right arrow keys.

The issue you are experiencing with IntelliJ IDEA's navigation is frustrating and can affect your productivity. The shortcut you are currently using, Ctrl+Shift+Backspace, only jumps to the location of the last edit.

This limitation can be particularly annoying when you want to navigate back or forward in your code without being tied to specific edits.

⚠️ Common Causes

  • The root cause of this issue is IntelliJ IDEA's current navigation system, which relies on the history of edits made to a file. When you use Ctrl+Shift+Backspace, it jumps to the last edit location.
  • This limitation can be attributed to IntelliJ IDEA's design choices and may require a change in its underlying architecture.

🛠️ Step-by-Step Verified Fixes

Customizing Navigation Shortcuts

  1. Step 1: To overcome this limitation, you can customize your navigation shortcuts. Open the Settings (Ctrl+Shift+Alt+S) and navigate to Editor | General | Navigation.
  2. Step 2: In the Navigation settings, click on the 'Navigation Shortcuts' tab and look for the 'Jump to previous view location' option.
  3. Step 3: By default, this shortcut is set to Ctrl+Shift+Backspace. You can change it to a different key combination by clicking on the '...' icon next to the shortcut and selecting a new key from the list.

Using the 'Recent Files' Feature

  1. Step 1: Another approach is to use IntelliJ IDEA's 'Recent Files' feature. This feature allows you to quickly switch between recently opened files.
  2. Step 2: To access this feature, open the File | Recent Files menu or press Ctrl+Shift+Alt+F.
  3. Step 3: From here, you can select a file from your recent list and it will be opened in the current editor.

🎯 Final Words

By customizing your navigation shortcuts or using the 'Recent Files' feature, you can overcome the limitations of IntelliJ IDEA's current navigation system and improve your productivity.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions