← Back to Applications List
Rider

Rider

A cross-platform IDE specialized for .NET and game development, innovatively supporting Unity development and C# projects

Ctrl+X
Cut Line
Cuts the entire line when nothing is selected.
💡 Hint: eXcise
Ctrl+C
Copy Line
Copies the entire line when nothing is selected.
💡 Hint: Copy
Ctrl+V
Paste
Pastes content from clipboard.
💡 Hint: Viscous paste
Ctrl+Shift+S
Save All
Saves all open files.
💡 Hint: Save all
Ctrl+Z
Undo
Undoes the last action.
💡 Hint: Zap back
Ctrl+Y
Redo
Redoes the previously undone action.
💡 Hint: Yes, redo
Ctrl+D
Duplicate Line or Selection
Duplicates the current line or selection.
💡 Hint: Duplicate
Ctrl+L
Delete Line
Deletes the current line.
💡 Hint: Line delete
Ctrl+Shift+U
Toggle Case
Toggles case of selected text.
💡 Hint: Upper/lower
Ctrl+Enter
Add Line Below
Adds a new blank line below the current line and moves cursor.
💡 Hint: Enter below
Ctrl+Shift+Enter
Add Line Above
Adds a new blank line above the current line and moves cursor.
💡 Hint: Shift + Enter above
Shift+Alt+Click
Add Cursor at Click Location
Creates additional cursor at clicked location.
💡 Hint: Shift + Alt + Click
Shift+Alt+Down
Add Cursor Below
Adds a new cursor below the current position.
💡 Hint: Shift + Alt + Down
Alt+Shift+Insert
Toggle Column Selection Mode
Toggles column selection mode on/off.
💡 Hint: Alt + Shift + Insert
Ctrl+KCtrl+C
Toggle Line Comment
Toggles comment/uncomment for selected lines.
💡 Hint: Komment Comment
Ctrl+Shift+/
Toggle Block Comment
Toggles block comment/uncomment for selection.
💡 Hint: Shift + / (block)
Ctrl+F
Find
Searches for text in the current file.
💡 Hint: Find
Ctrl+Shift+F
Find in Files
Searches for text across the entire project.
💡 Hint: Shift + Find (find all)
Ctrl+H
Replace
Replaces text in the current file.
💡 Hint: Hunt and replace
F3
Find Next
Moves to the next search result.
💡 Hint: F3 = Find next
Shift+F3
Find Previous
Moves to the previous search result.
💡 Hint: Shift + F3 = Find previous
Ctrl+F3
Find Word at Caret
Finds the word at cursor and moves to next occurrence.
💡 Hint: Ctrl + F3 = Find word
F12
Go to Declaration
Jumps to the symbol definition.
💡 Hint: F12 = Go to definition
Shift+F12
Find Usages
Finds all places where the symbol is used.
💡 Hint: Shift + F12 = Find usages
Ctrl+F12
Go to Implementation
Goes to implementations of interface or abstract method.
💡 Hint: Ctrl + F12 = Implementation
Ctrl+-
Navigate Back
Navigates back to the previous location.
💡 Hint: Ctrl + - (minus)
Ctrl+Shift+-
Navigate Forward
Navigates forward to the next location.
💡 Hint: Ctrl + Shift + -
Ctrl+G
Go to Line
Jumps to the specified line number.
💡 Hint: Go to line
Ctrl+Shift+T
Go to File
Searches and opens files in project by name.
💡 Hint: Shift + Type (type filename)
Ctrl+Alt+Shift+T
Go to Symbol
Searches symbols in project by name.
💡 Hint: Alt + Shift + Type (symbol)
Shift+Shift
Search Everywhere
Unified search for files, classes, symbols, actions, etc.
💡 Hint: Double Shift
Ctrl+F4
Close Current File
Closes the currently open file.
💡 Hint: F4 = File close
Ctrl+Tab
Switch Between Files
Switches between open files.
💡 Hint: Ctrl + Tab
Ctrl+Shift+C
Copy Path
Copies current file path to clipboard.
💡 Hint: Shift + Copy path
Ctrl+KCtrl+K
Toggle Bookmark
Adds or removes bookmark at current position.
💡 Hint: K + K (bookmark)
Ctrl+KCtrl+N
Go to Next Bookmark
Goes to the next bookmark.
💡 Hint: K + Next
Ctrl+KCtrl+P
Go to Previous Bookmark
Goes to the previous bookmark.
💡 Hint: K + Previous
Ctrl+RCtrl+R
Rename
Safely renames a symbol.
💡 Hint: Rename + R
Ctrl+RCtrl+M
Extract Method
Extracts selected code into a new method.
💡 Hint: Refactor + Method
Ctrl+RCtrl+V
Introduce Variable
Extracts expression into a variable.
💡 Hint: Refactor + Variable
Ctrl+RCtrl+V
Change Signature
Changes method parameters.
💡 Hint: Refactor + parameter Value
Alt+Insert
Generate
Generates constructors, properties, methods, etc.
💡 Hint: Alt + Insert
Alt+Enter
Show Intention Actions
Shows available quick fixes and refactorings.
💡 Hint: Alt + Enter
Ctrl+Alt+S
Settings
Opens IDE settings.
💡 Hint: Alt + Settings
Alt+1
Show Explorer
Shows/hides project explorer.
💡 Hint: Alt + 1
Alt+3
Show Find Window
Shows find results window.
💡 Hint: Alt + 3
Alt+5
Show Debug Window
Shows debug window.
💡 Hint: Alt + 5
Alt+9
Show Git Window
Shows Git version control window.
💡 Hint: Alt + 9
Alt+7
Show NuGet Window
Shows NuGet package manager.
💡 Hint: Alt + 7
Alt+8
Show Unit Tests Window
Shows unit tests window.
💡 Hint: Alt + 8
Ctrl+Alt+K
Commit
Commits selected files.
💡 Hint: Alt + Kommit
Ctrl+Shift+K
Push
Pushes commits to remote repository.
💡 Hint: Shift + K (push)
Ctrl+Alt+W
Pull
Pulls changes from remote repository.
💡 Hint: Alt + W (pull)
Ctrl+Alt+Z
Rollback
Reverts changes in selected files.
💡 Hint: Alt + Z (undo)
F9
Toggle Breakpoint
Sets/removes breakpoint at current line.
💡 Hint: F9 = Breakpoint
F5
Start/Continue Debugging
Starts or continues debugging.
💡 Hint: F5 = Go
Shift+F5
Stop Debugging
Stops debugging.
💡 Hint: Shift + F5 = Stop
F10
Step Over
Executes current line and moves to next.
💡 Hint: F10 = Step over
F11
Step Into
Steps into method.
💡 Hint: F11 = Step in
Shift+F11
Step Out
Steps out of current method.
💡 Hint: Shift + F11 = Step out
Ctrl+F10
Run to Cursor
Runs to cursor position.
💡 Hint: Ctrl + F10 = Run to
Ctrl+Alt+P
Attach to Process
Attaches debugger to running process.
💡 Hint: Alt + Process
Ctrl+Shift+B
Build Solution
Builds entire solution.
💡 Hint: Shift + Build
Ctrl+F9
Cancel Build
Cancels running build.
💡 Hint: Ctrl + F9 = Cancel
Ctrl+Space
Basic Completion
Shows basic code completion.
💡 Hint: Ctrl + Space
Ctrl+Alt+Space
Smart Completion
Shows type-matching smart completion.
💡 Hint: Alt + Space (smart)
Ctrl+Shift+Space
Parameter Info
Shows method parameter info.
💡 Hint: Shift + Space (params)
Ctrl+KCtrl+I
Quick Documentation
Shows symbol documentation in popup.
💡 Hint: K + Info
Ctrl+Alt+Enter
Reformat Code
Automatically formats code.
💡 Hint: Alt + Enter (format)
Ctrl+ECtrl+C
Code Cleanup
Runs code cleanup.
💡 Hint: Edit + Cleanup
Alt+Shift+=
Expand Selection
Expands selection logically.
💡 Hint: Shift + = (expand)
Alt+Shift+-
Shrink Selection
Shrinks selection logically.
💡 Hint: Shift + - (shrink)
Ctrl+A
Select All
Selects all text in file.
💡 Hint: All
Ctrl+MCtrl+X
Expand All
Expands all folded regions.
💡 Hint: M + eXpand
Ctrl+MCtrl+A
Collapse All
Collapses all code.
💡 Hint: M + All
Ctrl+MCtrl+O
Collapse to Definitions
Collapses to definition level.
💡 Hint: M + Outline
Alt+Up
Move Line Up
Moves current line up.
💡 Hint: Alt +
Alt+Down
Move Line Down
Moves current line down.
💡 Hint: Alt +