mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-13 01:30:53 +02:00
Merge pull request #2418 from jesseduffield/feature/copy-remote-branch-to-clipboard
This commit is contained in:
@ -214,6 +214,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
|
|||||||
## Remote Branches
|
## Remote Branches
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
|
<kbd>ctrl+o</kbd>: copy branch name to clipboard
|
||||||
<kbd>space</kbd>: checkout
|
<kbd>space</kbd>: checkout
|
||||||
<kbd>n</kbd>: new branch
|
<kbd>n</kbd>: new branch
|
||||||
<kbd>M</kbd>: merge into currently checked out branch
|
<kbd>M</kbd>: merge into currently checked out branch
|
||||||
|
@ -268,6 +268,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
|
|||||||
## リモートブランチ
|
## リモートブランチ
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
|
<kbd>ctrl+o</kbd>: ブランチ名をクリップボードにコピー
|
||||||
<kbd>space</kbd>: チェックアウト
|
<kbd>space</kbd>: チェックアウト
|
||||||
<kbd>n</kbd>: 新しいブランチを作成
|
<kbd>n</kbd>: 新しいブランチを作成
|
||||||
<kbd>M</kbd>: 現在のブランチにマージ
|
<kbd>M</kbd>: 現在のブランチにマージ
|
||||||
|
@ -199,6 +199,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
|
|||||||
## 원격 브랜치
|
## 원격 브랜치
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
|
<kbd>ctrl+o</kbd>: 브랜치명을 클립보드에 복사
|
||||||
<kbd>space</kbd>: 체크아웃
|
<kbd>space</kbd>: 체크아웃
|
||||||
<kbd>n</kbd>: 새 브랜치 생성
|
<kbd>n</kbd>: 새 브랜치 생성
|
||||||
<kbd>M</kbd>: 현재 브랜치에 병합
|
<kbd>M</kbd>: 현재 브랜치에 병합
|
||||||
|
@ -193,6 +193,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
|
|||||||
## Remote Branches
|
## Remote Branches
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
|
<kbd>ctrl+o</kbd>: kopieer branch name naar klembord
|
||||||
<kbd>space</kbd>: uitchecken
|
<kbd>space</kbd>: uitchecken
|
||||||
<kbd>n</kbd>: nieuwe branch
|
<kbd>n</kbd>: nieuwe branch
|
||||||
<kbd>M</kbd>: merge in met huidige checked out branch
|
<kbd>M</kbd>: merge in met huidige checked out branch
|
||||||
|
@ -191,6 +191,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
|
|||||||
## Remote Branches
|
## Remote Branches
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
|
<kbd>ctrl+o</kbd>: copy branch name to clipboard
|
||||||
<kbd>space</kbd>: przełącz
|
<kbd>space</kbd>: przełącz
|
||||||
<kbd>n</kbd>: nowa gałąź
|
<kbd>n</kbd>: nowa gałąź
|
||||||
<kbd>M</kbd>: scal do obecnej gałęzi
|
<kbd>M</kbd>: scal do obecnej gałęzi
|
||||||
|
@ -274,6 +274,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
|
|||||||
## 远程分支
|
## 远程分支
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
|
<kbd>ctrl+o</kbd>: 将分支名称复制到剪贴板
|
||||||
<kbd>space</kbd>: 检出
|
<kbd>space</kbd>: 检出
|
||||||
<kbd>n</kbd>: 新分支
|
<kbd>n</kbd>: 新分支
|
||||||
<kbd>M</kbd>: 合并到当前检出的分支
|
<kbd>M</kbd>: 合并到当前检出的分支
|
||||||
|
@ -211,6 +211,12 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
|
|||||||
Handler: self.handleCopySelectedSideContextItemToClipboard,
|
Handler: self.handleCopySelectedSideContextItemToClipboard,
|
||||||
Description: self.c.Tr.LcCopyBranchNameToClipboard,
|
Description: self.c.Tr.LcCopyBranchNameToClipboard,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
ViewName: "remoteBranches",
|
||||||
|
Key: opts.GetKey(opts.Config.Universal.CopyToClipboard),
|
||||||
|
Handler: self.handleCopySelectedSideContextItemToClipboard,
|
||||||
|
Description: self.c.Tr.LcCopyBranchNameToClipboard,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
ViewName: "commits",
|
ViewName: "commits",
|
||||||
Key: opts.GetKey(opts.Config.Universal.CopyToClipboard),
|
Key: opts.GetKey(opts.Config.Universal.CopyToClipboard),
|
||||||
|
Reference in New Issue
Block a user