fork-dev / TrackerWin

Bug and issue tracker for Fork for Windows
461 stars 10 forks source link

Fork Keyboard Shortcuts #333

Open TanyaPristupova opened 5 years ago

TanyaPristupova commented 5 years ago
General Navigation
All Commits View
Changes View
Repository
Repository Manager
JustinasKilas commented 1 year ago

Please consider adding a shortcut for "Create Pull Request..." command

Also 3rd option "Commit and Push and Create Pull Request" would be awsom!! image

HongliangQiu commented 1 year ago

Please consider adding a shortcut for "Switch Workspace" command. Thanks. image

carun commented 1 year ago

Please consider adding shortcut for "Open in Visual Studio Code". Thanks!

image

TiloBuechsenschuss commented 1 year ago

A shortcut to switch between commit sorting (topologically or by date) would be helpful. :-)

heythisischris commented 1 year ago

Please consider adding a shortcut for "Switch Workspace" command. Thanks. image

+1 for adding a shortcut to switch workspaces! One of the most powerful features of Fork IMO.

carun commented 1 year ago

Ability to add/customize the shortcuts would probably cover all new requests.

My personal favorite is to open with VS Code with Ctrl .

christianfriessnegg commented 1 year ago

I would really enjoy having keyboard shortcuts (any maybe 2 buttons for GUI lovers) for "go to next change" / "previous change" in the changes view: image This would make the review of changes a lot faster in my opinion. Currently I have to use the "workaround" of using external diff-tool BeyondCompare and using that: image

AndriiPetrovDev commented 9 months ago

just tried Fork and I can't believe that it doesn't have such basic stuff as resolving conflicts hotkeys

andgeno commented 7 months ago

I'd love to see a native (customizable) shortcut for switching between workspaces quickly.

As a workaround for now, I wrote this AutoHotkey script (Windows only, obviously):

#Requires AutoHotkey v2.0
#SingleInstance

;;
;; Triggers "Switch Workspace" action on "`" key press
;;
#HotIf WinActive("ahk_exe Fork.exe")
`::
{
    Send "^p"
    SendText "Switch Workspace"
    Sleep 250
    Send "{Enter}"
}
Northwind877 commented 7 months ago

Is there a way to navigate to the next commit on the same branch? (might want to add: in the All Commits view) for example, like collapsing the tree and go to the next commit without collapsing the tree

I still can't find a shortcut for this, but it's really common for us to have multiple active branches. So, navigating manually by following a line in the graph is really inconvenient. Would love to have Ctrl + Up and Ctrl + Down for the most common scenarios, which is moving in the same branch. There could be some edge cases, such as

  • Ctrl + Down into the originating branch, because this is the first commit of the current branch and there's only one parent;
  • Ctrl + Up into the target branch, because this is the last commit of the current branch and there's only one child;
  • Ctrl + Down when there are multiple parents, but there's no parent commit on the same branch, then nothing happens, else goes to the previous commit on the current branch;
  • Ctrl + Up when there are multiple children, but there's no child commit on the same branch, then nothing happens, else goes to the next commit on the current branch.

Are there any shortcuts for "Go to child commit" and "Go to parent commit " now? Unfortunately I couldn't find out, I work on a Mac. Thank you!

0papen0 commented 5 months ago

What about a shortcut for the Amend check-box when on the Changes View? image

bbukraLTX commented 5 months ago

@0papen0 cmd+shift+a works for me

0papen0 commented 5 months ago

@0papen0 cmd+shift+a works for me

Doesn't seem to do anything for me on win, sadly. But thanks.

premkumars-avon commented 3 months ago

Add direct shortcut to click the current fork of project

Lohoris commented 3 months ago

Would be great if CTRL+Enter would "Focus commit message field" in case it's empty 😊

Also I didn't find any way to focus to the files, so the idea of pressing Enter to stage something doesn't really work unless I click there with the mouse first anyway 🤔

REYJL commented 2 weeks ago

Would be great to have a quick access (Toolbar button ?) to "Repository Manager" without closing other tabs 😊

ps: Great job folks, your soft is a pain killer !!! Love it 👍

Otiel commented 2 weeks ago

Would be great to have a quick access (Toolbar button ?) to "Repository Manager" without closing other tabs

File > New Tab (Ctrl-T)

REYJL commented 2 weeks ago

Thanks, but I just saw the '+' button on right that also make the job ! Ctrl+T is even better 😊