1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-29 23:17:32 +02:00

fix linting

This commit is contained in:
Jesse Duffield 2022-01-30 16:42:20 +11:00
parent b5515da00b
commit 182c999ee0
6 changed files with 5 additions and 8 deletions

View File

@ -172,7 +172,6 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
## Files Panel (Files) ## Files Panel (Files)
<pre> <pre>
<kbd>d</kbd>: view 'discard changes' options
<kbd>D</kbd>: view reset options <kbd>D</kbd>: view reset options
<kbd>f</kbd>: fetch <kbd>f</kbd>: fetch
<kbd>ctrl+o</kbd>: copy the file name to the clipboard <kbd>ctrl+o</kbd>: copy the file name to the clipboard
@ -186,6 +185,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
<kbd>e</kbd>: edit file <kbd>e</kbd>: edit file
<kbd>o</kbd>: open file <kbd>o</kbd>: open file
<kbd>i</kbd>: add to .gitignore <kbd>i</kbd>: add to .gitignore
<kbd>d</kbd>: view 'discard changes' options
<kbd>r</kbd>: refresh files <kbd>r</kbd>: refresh files
<kbd>s</kbd>: stash changes <kbd>s</kbd>: stash changes
<kbd>S</kbd>: view stash options <kbd>S</kbd>: view stash options

View File

@ -180,6 +180,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
<kbd>e</kbd>: verander bestand <kbd>e</kbd>: verander bestand
<kbd>o</kbd>: open bestand <kbd>o</kbd>: open bestand
<kbd>i</kbd>: voeg toe aan .gitignore <kbd>i</kbd>: voeg toe aan .gitignore
<kbd>d</kbd>: bekijk 'veranderingen ongedaan maken' opties
<kbd>r</kbd>: refresh bestanden <kbd>r</kbd>: refresh bestanden
<kbd>s</kbd>: stash-bestanden <kbd>s</kbd>: stash-bestanden
<kbd>S</kbd>: bekijk stash opties <kbd>S</kbd>: bekijk stash opties

View File

@ -172,7 +172,6 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
## Pliki Panel (Pliki) ## Pliki Panel (Pliki)
<pre> <pre>
<kbd>d</kbd>: pokaż opcje porzucania zmian
<kbd>D</kbd>: wyświetl opcje resetu <kbd>D</kbd>: wyświetl opcje resetu
<kbd>f</kbd>: pobierz <kbd>f</kbd>: pobierz
<kbd>ctrl+o</kbd>: copy the file name to the clipboard <kbd>ctrl+o</kbd>: copy the file name to the clipboard
@ -186,6 +185,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
<kbd>e</kbd>: edytuj plik <kbd>e</kbd>: edytuj plik
<kbd>o</kbd>: otwórz plik <kbd>o</kbd>: otwórz plik
<kbd>i</kbd>: dodaj do .gitignore <kbd>i</kbd>: dodaj do .gitignore
<kbd>d</kbd>: pokaż opcje porzucania zmian
<kbd>r</kbd>: odśwież pliki <kbd>r</kbd>: odśwież pliki
<kbd>s</kbd>: przechowaj zmiany <kbd>s</kbd>: przechowaj zmiany
<kbd>S</kbd>: wyświetl opcje schowka <kbd>S</kbd>: wyświetl opcje schowka

View File

@ -172,7 +172,6 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
## 文件 面板 (文件) ## 文件 面板 (文件)
<pre> <pre>
<kbd>d</kbd>: 查看'放弃更改‘选项
<kbd>D</kbd>: 查看重置选项 <kbd>D</kbd>: 查看重置选项
<kbd>f</kbd>: 抓取 <kbd>f</kbd>: 抓取
<kbd>ctrl+o</kbd>: 将文件名复制到剪贴板 <kbd>ctrl+o</kbd>: 将文件名复制到剪贴板
@ -186,6 +185,7 @@ _This file is auto-generated. To update, make the changes in the pkg/i18n direct
<kbd>e</kbd>: 编辑文件 <kbd>e</kbd>: 编辑文件
<kbd>o</kbd>: 打开文件 <kbd>o</kbd>: 打开文件
<kbd>i</kbd>: 添加到 .gitignore <kbd>i</kbd>: 添加到 .gitignore
<kbd>d</kbd>: 查看'放弃更改‘选项
<kbd>r</kbd>: 刷新文件 <kbd>r</kbd>: 刷新文件
<kbd>s</kbd>: 将所有更改加入贮藏 <kbd>s</kbd>: 将所有更改加入贮藏
<kbd>S</kbd>: 查看隐藏选项 <kbd>S</kbd>: 查看隐藏选项

View File

@ -270,10 +270,6 @@ type MergingPanelState struct {
UserVerticalScrolling bool UserVerticalScrolling bool
} }
type filePanelState struct {
listPanelState
}
// TODO: consider splitting this out into the window and the branches view // TODO: consider splitting this out into the window and the branches view
type branchPanelState struct { type branchPanelState struct {
listPanelState listPanelState

View File

@ -127,7 +127,7 @@ M file1
for _, s := range scenarios { for _, s := range scenarios {
s := s s := s
t.Run(s.name, func(t *testing.T) { t.Run(s.name, func(t *testing.T) {
viewModel := filetree.NewCommitFileTreeViewModel(s.files, utils.NewDummyLog(), true) viewModel := filetree.NewCommitFileTreeViewModel(func() []*models.CommitFile { return s.files }, utils.NewDummyLog(), true)
for _, path := range s.collapsedPaths { for _, path := range s.collapsedPaths {
viewModel.ToggleCollapsed(path) viewModel.ToggleCollapsed(path)
} }