1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-06 22:33:07 +02:00

Enable hunk staging mode by default (#4780)

- **PR Description**

In #4684 we improved the hunk selection behavior to work on blocks of
changes instead of actual hunks, and I find this so useful that I wanted
to use it by default. In #4685 I added a user config to make hunk
selection the default, but I made it an opt-in config because I was
worried that users might not find out how to switch back to line
selection if needed.

To address this concern, in this PR I add a popup that explains this the
first time the user enters staging; there is also a breaking changes
notice at startup, and we improve the options display at the bottom of
the screen to be clearer about this. Hopefully these measures are enough
to not confuse people.

Closes #4759.
This commit is contained in:
Stefan Haller
2025-08-01 10:38:06 +02:00
committed by GitHub
29 changed files with 129 additions and 54 deletions

View File

@ -117,7 +117,7 @@ gui:
wrapLinesInStagingView: true wrapLinesInStagingView: true
# If true, hunk selection mode will be enabled by default when entering the staging view. # If true, hunk selection mode will be enabled by default when entering the staging view.
useHunkModeInStagingView: false useHunkModeInStagingView: true
# One of 'auto' (default) | 'en' | 'zh-CN' | 'zh-TW' | 'pl' | 'nl' | 'ja' | 'ko' | 'ru' # One of 'auto' (default) | 'en' | 'zh-CN' | 'zh-TW' | 'pl' | 'nl' | 'ja' | 'ko' | 'ru'
language: auto language: auto

View File

@ -221,7 +221,7 @@ _Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b_
| `` <left> `` | Go to previous hunk | | | `` <left> `` | Go to previous hunk | |
| `` <right> `` | Go to next hunk | | | `` <right> `` | Go to next hunk | |
| `` v `` | Toggle range select | | | `` v `` | Toggle range select | |
| `` a `` | Select hunk | Toggle hunk selection mode. | | `` a `` | Toggle hunk selection | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | Copy selected text to clipboard | | | `` <c-o> `` | Copy selected text to clipboard | |
| `` o `` | Open file | Open file in default application. | | `` o `` | Open file | Open file in default application. |
| `` e `` | Edit file | Open file in external editor. | | `` e `` | Edit file | Open file in external editor. |
@ -236,7 +236,7 @@ _Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b_
| `` <left> `` | Go to previous hunk | | | `` <left> `` | Go to previous hunk | |
| `` <right> `` | Go to next hunk | | | `` <right> `` | Go to next hunk | |
| `` v `` | Toggle range select | | | `` v `` | Toggle range select | |
| `` a `` | Select hunk | Toggle hunk selection mode. | | `` a `` | Toggle hunk selection | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | Copy selected text to clipboard | | | `` <c-o> `` | Copy selected text to clipboard | |
| `` <space> `` | Stage | Toggle selection staged / unstaged. | | `` <space> `` | Stage | Toggle selection staged / unstaged. |
| `` d `` | Discard | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. | | `` d `` | Discard | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. |

View File

@ -164,7 +164,7 @@ _Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b_
| `` <left> `` | 이전 hunk를 선택 | | | `` <left> `` | 이전 hunk를 선택 | |
| `` <right> `` | 다음 hunk를 선택 | | | `` <right> `` | 다음 hunk를 선택 | |
| `` v `` | 드래그 선택 전환 | | | `` v `` | 드래그 선택 전환 | |
| `` a `` | Toggle select hunk | Toggle hunk selection mode. | | `` a `` | Toggle select hunk | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | 선택한 텍스트를 클립보드에 복사 | | | `` <c-o> `` | 선택한 텍스트를 클립보드에 복사 | |
| `` o `` | 파일 닫기 | Open file in default application. | | `` o `` | 파일 닫기 | Open file in default application. |
| `` e `` | 파일 편집 | Open file in external editor. | | `` e `` | 파일 편집 | Open file in external editor. |
@ -179,7 +179,7 @@ _Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b_
| `` <left> `` | 이전 hunk를 선택 | | | `` <left> `` | 이전 hunk를 선택 | |
| `` <right> `` | 다음 hunk를 선택 | | | `` <right> `` | 다음 hunk를 선택 | |
| `` v `` | 드래그 선택 전환 | | | `` v `` | 드래그 선택 전환 | |
| `` a `` | Toggle select hunk | Toggle hunk selection mode. | | `` a `` | Toggle select hunk | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | 선택한 텍스트를 클립보드에 복사 | | | `` <c-o> `` | 선택한 텍스트를 클립보드에 복사 | |
| `` <space> `` | Staged 전환 | 선택한 행을 staged / unstaged | | `` <space> `` | Staged 전환 | 선택한 행을 staged / unstaged |
| `` d `` | 변경을 삭제 (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. | | `` d `` | 변경을 삭제 (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. |

View File

@ -229,7 +229,7 @@ _Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b_
| `` <left> `` | Selecteer de vorige hunk | | | `` <left> `` | Selecteer de vorige hunk | |
| `` <right> `` | Selecteer de volgende hunk | | | `` <right> `` | Selecteer de volgende hunk | |
| `` v `` | Toggle drag selecteer | | | `` v `` | Toggle drag selecteer | |
| `` a `` | Toggle selecteer hunk | Toggle hunk selection mode. | | `` a `` | Toggle selecteer hunk | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | Copy selected text to clipboard | | | `` <c-o> `` | Copy selected text to clipboard | |
| `` o `` | Open bestand | Open file in default application. | | `` o `` | Open bestand | Open file in default application. |
| `` e `` | Verander bestand | Open file in external editor. | | `` e `` | Verander bestand | Open file in external editor. |
@ -302,7 +302,7 @@ _Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b_
| `` <left> `` | Selecteer de vorige hunk | | | `` <left> `` | Selecteer de vorige hunk | |
| `` <right> `` | Selecteer de volgende hunk | | | `` <right> `` | Selecteer de volgende hunk | |
| `` v `` | Toggle drag selecteer | | | `` v `` | Toggle drag selecteer | |
| `` a `` | Toggle selecteer hunk | Toggle hunk selection mode. | | `` a `` | Toggle selecteer hunk | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | Copy selected text to clipboard | | | `` <c-o> `` | Copy selected text to clipboard | |
| `` <space> `` | Toggle staged | Toggle lijnen staged / unstaged | | `` <space> `` | Toggle staged | Toggle lijnen staged / unstaged |
| `` d `` | Verwijdert change (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. | | `` d `` | Verwijdert change (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. |

View File

@ -76,7 +76,7 @@ _Связки клавиш_
| `` <left> `` | Выбрать предыдущую часть | | | `` <left> `` | Выбрать предыдущую часть | |
| `` <right> `` | Выбрать следующую часть | | | `` <right> `` | Выбрать следующую часть | |
| `` v `` | Переключить выборку перетаскивания | | | `` v `` | Переключить выборку перетаскивания | |
| `` a `` | Переключить выборку частей | Toggle hunk selection mode. | | `` a `` | Переключить выборку частей | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | Скопировать выделенный текст в буфер обмена | | | `` <c-o> `` | Скопировать выделенный текст в буфер обмена | |
| `` <space> `` | Переключить индекс | Переключить строку в проиндексированные / непроиндексированные | | `` <space> `` | Переключить индекс | Переключить строку в проиндексированные / непроиндексированные |
| `` d `` | Отменить изменение (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. | | `` d `` | Отменить изменение (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. |
@ -124,7 +124,7 @@ _Связки клавиш_
| `` <left> `` | Выбрать предыдущую часть | | | `` <left> `` | Выбрать предыдущую часть | |
| `` <right> `` | Выбрать следующую часть | | | `` <right> `` | Выбрать следующую часть | |
| `` v `` | Переключить выборку перетаскивания | | | `` v `` | Переключить выборку перетаскивания | |
| `` a `` | Переключить выборку частей | Toggle hunk selection mode. | | `` a `` | Переключить выборку частей | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | Скопировать выделенный текст в буфер обмена | | | `` <c-o> `` | Скопировать выделенный текст в буфер обмена | |
| `` o `` | Открыть файл | Open file in default application. | | `` o `` | Открыть файл | Open file in default application. |
| `` e `` | Редактировать файл | Open file in external editor. | | `` e `` | Редактировать файл | Open file in external editor. |

View File

@ -58,7 +58,7 @@ _說明:`<c-b>` 表示 Ctrl+B、`<a-b>` 表示 Alt+B,`B`表示 Shift+B
| `` <left> `` | 選擇上一段 | | | `` <left> `` | 選擇上一段 | |
| `` <right> `` | 選擇下一段 | | | `` <right> `` | 選擇下一段 | |
| `` v `` | 切換拖曳選擇 | | | `` v `` | 切換拖曳選擇 | |
| `` a `` | 切換選擇程式碼塊 | Toggle hunk selection mode. | | `` a `` | 切換選擇程式碼塊 | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | 複製所選文本至剪貼簿 | | | `` <c-o> `` | 複製所選文本至剪貼簿 | |
| `` o `` | 開啟檔案 | 使用預設軟體開啟 | | `` o `` | 開啟檔案 | 使用預設軟體開啟 |
| `` e `` | 編輯檔案 | 使用外部編輯器開啟 | | `` e `` | 編輯檔案 | 使用外部編輯器開啟 |
@ -99,7 +99,7 @@ _說明:`<c-b>` 表示 Ctrl+B、`<a-b>` 表示 Alt+B,`B`表示 Shift+B
| `` <left> `` | 選擇上一段 | | | `` <left> `` | 選擇上一段 | |
| `` <right> `` | 選擇下一段 | | | `` <right> `` | 選擇下一段 | |
| `` v `` | 切換拖曳選擇 | | | `` v `` | 切換拖曳選擇 | |
| `` a `` | 切換選擇程式碼塊 | Toggle hunk selection mode. | | `` a `` | 切換選擇程式碼塊 | Toggle line-by-line vs. hunk selection mode. |
| `` <c-o> `` | 複製所選文本至剪貼簿 | | | `` <c-o> `` | 複製所選文本至剪貼簿 | |
| `` <space> `` | 切換預存 | 切換現有行的狀態 (已預存/未預存) | | `` <space> `` | 切換預存 | 切換現有行的狀態 (已預存/未預存) |
| `` d `` | 刪除變更 (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. | | `` d `` | 刪除變更 (git reset) | When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change. |

View File

@ -141,6 +141,9 @@ func Start(buildInfo *BuildInfo, integrationTest integrationTypes.IntegrationTes
if integrationTest != nil { if integrationTest != nil {
integrationTest.SetupConfig(appConfig) integrationTest.SetupConfig(appConfig)
// Set this to true so that integration tests don't have to explicitly deal with the hunk
// staging hint:
appConfig.GetAppState().DidShowHunkStagingHint = true
// Preserve the changes that the test setup just made to the config, so // Preserve the changes that the test setup just made to the config, so
// they don't get lost when we reload the config while running the test // they don't get lost when we reload the config while running the test

View File

@ -659,6 +659,7 @@ type AppState struct {
LastUpdateCheck int64 LastUpdateCheck int64
RecentRepos []string RecentRepos []string
StartupPopupVersion int StartupPopupVersion int
DidShowHunkStagingHint bool
LastVersion string // this is the last version the user was using, for the purpose of showing release notes LastVersion string // this is the last version the user was using, for the purpose of showing release notes
// these are for shell commands typed in directly, not for custom commands in the lazygit config. // these are for shell commands typed in directly, not for custom commands in the lazygit config.
@ -669,12 +670,7 @@ type AppState struct {
} }
func getDefaultAppState() *AppState { func getDefaultAppState() *AppState {
return &AppState{ return &AppState{}
LastUpdateCheck: 0,
RecentRepos: []string{},
StartupPopupVersion: 0,
LastVersion: "",
}
} }
func LogPath() (string, error) { func LogPath() (string, error) {

View File

@ -739,7 +739,7 @@ func GetDefaultConfig() *UserConfig {
MainPanelSplitMode: "flexible", MainPanelSplitMode: "flexible",
EnlargedSideViewLocation: "left", EnlargedSideViewLocation: "left",
WrapLinesInStagingView: true, WrapLinesInStagingView: true,
UseHunkModeInStagingView: false, UseHunkModeInStagingView: true,
Language: "auto", Language: "auto",
TimeFormat: "02 Jan 06", TimeFormat: "02 Jan 06",
ShortTimeFormat: time.Kitchen, ShortTimeFormat: time.Kitchen,

View File

@ -494,6 +494,8 @@ func (self *CommitFilesController) enterCommitFile(node *filetree.CommitFileNode
} }
self.c.Context().Push(self.c.Contexts().CustomPatchBuilder, opts) self.c.Context().Push(self.c.Contexts().CustomPatchBuilder, opts)
self.c.Helpers().PatchBuilding.ShowHunkStagingHint()
return nil return nil
}, },
}) })

View File

@ -554,6 +554,8 @@ func (self *FilesController) EnterFile(opts types.OnFocusOpts) error {
context := lo.Ternary(opts.ClickedWindowName == "secondary", self.c.Contexts().StagingSecondary, self.c.Contexts().Staging) context := lo.Ternary(opts.ClickedWindowName == "secondary", self.c.Contexts().StagingSecondary, self.c.Contexts().Staging)
self.c.Context().Push(context, opts) self.c.Context().Push(context, opts)
self.c.Helpers().PatchBuilding.ShowHunkStagingHint()
return nil return nil
} }

View File

@ -2,8 +2,10 @@ package helpers
import ( import (
"errors" "errors"
"fmt"
"github.com/jesseduffield/lazygit/pkg/commands/patch" "github.com/jesseduffield/lazygit/pkg/commands/patch"
"github.com/jesseduffield/lazygit/pkg/gui/keybindings"
"github.com/jesseduffield/lazygit/pkg/gui/patch_exploring" "github.com/jesseduffield/lazygit/pkg/gui/patch_exploring"
"github.com/jesseduffield/lazygit/pkg/gui/types" "github.com/jesseduffield/lazygit/pkg/gui/types"
) )
@ -27,6 +29,19 @@ func (self *PatchBuildingHelper) ValidateNormalWorkingTreeState() (bool, error)
return true, nil return true, nil
} }
func (self *PatchBuildingHelper) ShowHunkStagingHint() {
if !self.c.AppState.DidShowHunkStagingHint && self.c.UserConfig().Gui.UseHunkModeInStagingView {
self.c.AppState.DidShowHunkStagingHint = true
self.c.SaveAppStateAndLogError()
message := fmt.Sprintf(self.c.Tr.HunkStagingHint,
keybindings.Label(self.c.UserConfig().Keybinding.Main.ToggleSelectHunk))
self.c.Confirm(types.ConfirmOpts{
Prompt: message,
})
}
}
// takes us from the patch building panel back to the commit files panel // takes us from the patch building panel back to the commit files panel
func (self *PatchBuildingHelper) Escape() { func (self *PatchBuildingHelper) Escape() {
self.c.Context().Pop() self.c.Context().Pop()

View File

@ -25,7 +25,7 @@ func (self *OptionsMenuAction) Call() error {
} }
return &types.MenuItem{ return &types.MenuItem{
OpensMenu: binding.OpensMenu, OpensMenu: binding.OpensMenu,
Label: binding.Description, Label: binding.GetDescription(),
OnPress: func() error { OnPress: func() error {
if binding.Handler == nil { if binding.Handler == nil {
return nil return nil
@ -60,7 +60,7 @@ func (self *OptionsMenuAction) getBindings(context types.Context) ([]*types.Bind
bindings, _ := self.c.GetInitialKeybindingsWithCustomCommands() bindings, _ := self.c.GetInitialKeybindingsWithCustomCommands()
for _, binding := range bindings { for _, binding := range bindings {
if binding.Description != "" { if binding.GetDescription() != "" {
if binding.ViewName == "" || binding.Tag == "global" { if binding.ViewName == "" || binding.Tag == "global" {
bindingsGlobal = append(bindingsGlobal, binding) bindingsGlobal = append(bindingsGlobal, binding)
} else if binding.ViewName == context.GetViewName() { } else if binding.ViewName == context.GetViewName() {
@ -80,6 +80,6 @@ func (self *OptionsMenuAction) getBindings(context types.Context) ([]*types.Bind
// handler in the keybinding struct. // handler in the keybinding struct.
func uniqueBindings(bindings []*types.Binding) []*types.Binding { func uniqueBindings(bindings []*types.Binding) []*types.Binding {
return lo.UniqBy(bindings, func(binding *types.Binding) string { return lo.UniqBy(bindings, func(binding *types.Binding) string {
return binding.Description return binding.GetDescription()
}) })
} }

View File

@ -98,6 +98,12 @@ func (self *PatchExplorerController) GetKeybindings(opts types.KeybindingsOpts)
Key: opts.GetKey(opts.Config.Main.ToggleSelectHunk), Key: opts.GetKey(opts.Config.Main.ToggleSelectHunk),
Handler: self.withRenderAndFocus(self.HandleToggleSelectHunk), Handler: self.withRenderAndFocus(self.HandleToggleSelectHunk),
Description: self.c.Tr.ToggleSelectHunk, Description: self.c.Tr.ToggleSelectHunk,
DescriptionFunc: func() string {
if state := self.context.GetState(); state != nil && state.SelectingHunk() {
return self.c.Tr.SelectLineByLine
}
return self.c.Tr.SelectHunk
},
Tooltip: self.c.Tr.ToggleSelectHunkTooltip, Tooltip: self.c.Tr.ToggleSelectHunkTooltip,
DisplayOnScreen: true, DisplayOnScreen: true,
}, },

View File

@ -50,14 +50,9 @@ func (self *OptionsMapMgr) renderContextOptionsMap() {
displayStyle = *binding.DisplayStyle displayStyle = *binding.DisplayStyle
} }
description := binding.Description
if binding.ShortDescription != "" {
description = binding.ShortDescription
}
return bindingInfo{ return bindingInfo{
key: keybindings.LabelFromKey(binding.Key), key: keybindings.LabelFromKey(binding.Key),
description: description, description: binding.GetShortDescription(),
style: displayStyle, style: displayStyle,
} }
}) })

View File

@ -16,9 +16,17 @@ type Binding struct {
Key Key Key Key
Modifier gocui.Modifier Modifier gocui.Modifier
Description string Description string
// DescriptionFunc is used instead of Description if non-nil, and is useful for dynamic
// descriptions that change depending on context. Important: this must not be an expensive call.
// Note that you should still provide a generic, non-dynamic description in the Description field,
// as this is used in the cheatsheet.
DescriptionFunc func() string
// If defined, this is used in place of Description when showing the keybinding // If defined, this is used in place of Description when showing the keybinding
// in the options view at the bottom left of the screen. // in the options view at the bottom left of the screen.
ShortDescription string ShortDescription string
// ShortDescriptionFunc is used instead of ShortDescription if non-nil, and is useful for dynamic
// descriptions that change depending on context. Important: this must not be an expensive call.
ShortDescriptionFunc func() string
Alternative string Alternative string
Tag string // e.g. 'navigation'. Used for grouping things in the cheatsheet Tag string // e.g. 'navigation'. Used for grouping things in the cheatsheet
OpensMenu bool OpensMenu bool
@ -43,8 +51,25 @@ type Binding struct {
GetDisabledReason func() *DisabledReason GetDisabledReason func() *DisabledReason
} }
func (Binding *Binding) IsDisabled() bool { func (b *Binding) IsDisabled() bool {
return Binding.GetDisabledReason != nil && Binding.GetDisabledReason() != nil return b.GetDisabledReason != nil && b.GetDisabledReason() != nil
}
func (b *Binding) GetDescription() string {
if b.DescriptionFunc != nil {
return b.DescriptionFunc()
}
return b.Description
}
func (b *Binding) GetShortDescription() string {
if b.ShortDescriptionFunc != nil {
return b.ShortDescriptionFunc()
}
if b.ShortDescription != "" {
return b.ShortDescription
}
return b.GetDescription()
} }
// A guard is a decorator which checks something before executing a handler // A guard is a decorator which checks something before executing a handler

View File

@ -289,7 +289,10 @@ type TranslationSet struct {
DiscardSelection string DiscardSelection string
DiscardSelectionTooltip string DiscardSelectionTooltip string
ToggleSelectHunk string ToggleSelectHunk string
SelectHunk string
SelectLineByLine string
ToggleSelectHunkTooltip string ToggleSelectHunkTooltip string
HunkStagingHint string
ToggleSelectionForPatch string ToggleSelectionForPatch string
EditHunk string EditHunk string
EditHunkTooltip string EditHunkTooltip string
@ -1057,6 +1060,15 @@ const englishNonReloadableConfigWarning = `The following config settings were ch
{{configs}}` {{configs}}`
const englishHunkStagingHint = `Hunk selection mode is now the default for staging. If you want to stage individual lines, press '%s' to switch to line-by-line mode.
If you prefer to use line-by-line mode by default (like in earlier lazygit versions), add
gui:
useHunkModeInStagingView: false
to your lazygit config.`
// exporting this so we can use it in tests // exporting this so we can use it in tests
func EnglishTranslationSet() *TranslationSet { func EnglishTranslationSet() *TranslationSet {
return &TranslationSet{ return &TranslationSet{
@ -1336,8 +1348,11 @@ func EnglishTranslationSet() *TranslationSet {
DiscardSelection: `Discard`, DiscardSelection: `Discard`,
DiscardSelectionTooltip: "When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change.", DiscardSelectionTooltip: "When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change.",
ToggleRangeSelect: "Toggle range select", ToggleRangeSelect: "Toggle range select",
ToggleSelectHunk: "Select hunk", ToggleSelectHunk: "Toggle hunk selection",
ToggleSelectHunkTooltip: "Toggle hunk selection mode.", SelectHunk: "Select hunks",
SelectLineByLine: "Select line-by-line",
ToggleSelectHunkTooltip: "Toggle line-by-line vs. hunk selection mode.",
HunkStagingHint: englishHunkStagingHint,
ToggleSelectionForPatch: `Toggle lines in patch`, ToggleSelectionForPatch: `Toggle lines in patch`,
EditHunk: `Edit hunk`, EditHunk: `Edit hunk`,
EditHunkTooltip: "Edit selected hunk in external editor.", EditHunkTooltip: "Edit selected hunk in external editor.",
@ -2119,7 +2134,13 @@ If, on the other hand, you want this even for feature branches, you can set it t
git: git:
localBranchSortOrder: recency localBranchSortOrder: recency
remoteBranchSortOrder: alphabetical`, remoteBranchSortOrder: alphabetical
- The default selection mode in the staging and custom patch building views has been changed to hunk mode. This is the more useful mode in most cases, as it usually saves a lot of keystrokes. If you want to switch back to the old line mode default, you can do so by adding the following to your config:
gui:
useHunkSelectionMode: false
`,
}, },
} }
} }

View File

@ -9,7 +9,9 @@ var StageRangeOfLines = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Staging a range of lines", Description: "Staging a range of lines",
ExtraCmdArgs: []string{}, ExtraCmdArgs: []string{},
Skip: false, Skip: false,
SetupConfig: func(config *config.AppConfig) {}, SetupConfig: func(config *config.AppConfig) {
config.GetUserConfig().Gui.UseHunkModeInStagingView = false
},
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
shell.CreateFileAndAdd("myfile", "1st\n2nd\n3rd\n4th\n5th\n6th\n") shell.CreateFileAndAdd("myfile", "1st\n2nd\n3rd\n4th\n5th\n6th\n")
shell.Commit("Add file") shell.Commit("Add file")

View File

@ -22,6 +22,7 @@ var CustomPatch = NewIntegrationTest(NewIntegrationTestArgs{
IsDemo: true, IsDemo: true,
SetupConfig: func(cfg *config.AppConfig) { SetupConfig: func(cfg *config.AppConfig) {
setDefaultDemoConfig(cfg) setDefaultDemoConfig(cfg)
cfg.GetUserConfig().Gui.UseHunkModeInStagingView = false
}, },
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
shell.CreateNCommitsWithRandomMessages(30) shell.CreateNCommitsWithRandomMessages(30)

View File

@ -48,7 +48,6 @@ var MoveToIndexPartial = NewIntegrationTest(NewIntegrationTestArgs{
Contains(`+third line2`), Contains(`+third line2`),
). ).
PressPrimaryAction(). PressPrimaryAction().
PressPrimaryAction().
Tap(func() { Tap(func() {
t.Views().Information().Content(Contains("Building patch")) t.Views().Information().Content(Contains("Building patch"))

View File

@ -9,7 +9,9 @@ var SpecificSelection = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Build a custom patch with a specific selection of lines, adding individual lines, as well as a range and hunk, and adding a file directly", Description: "Build a custom patch with a specific selection of lines, adding individual lines, as well as a range and hunk, and adding a file directly",
ExtraCmdArgs: []string{}, ExtraCmdArgs: []string{},
Skip: false, Skip: false,
SetupConfig: func(config *config.AppConfig) {}, SetupConfig: func(config *config.AppConfig) {
config.GetUserConfig().Gui.UseHunkModeInStagingView = false
},
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
shell.CreateFileAndAdd("hunk-file", "1a\n1b\n1c\n1d\n1e\n1f\n1g\n1h\n1i\n1j\n1k\n1l\n1m\n1n\n1o\n1p\n1q\n1r\n1s\n1t\n1u\n1v\n1w\n1x\n1y\n1z\n") shell.CreateFileAndAdd("hunk-file", "1a\n1b\n1c\n1d\n1e\n1f\n1g\n1h\n1i\n1j\n1k\n1l\n1m\n1n\n1o\n1p\n1q\n1r\n1s\n1t\n1u\n1v\n1w\n1x\n1y\n1z\n")
shell.Commit("first commit") shell.Commit("first commit")

View File

@ -50,7 +50,6 @@ var DiffContextChange = NewIntegrationTest(NewIntegrationTestArgs{
t.Views().Staging(). t.Views().Staging().
IsFocused(). IsFocused().
Press(keys.Main.ToggleSelectHunk).
SelectedLines( SelectedLines(
Contains(`-3a`), Contains(`-3a`),
Contains(`+3b`), Contains(`+3b`),
@ -92,7 +91,6 @@ var DiffContextChange = NewIntegrationTest(NewIntegrationTestArgs{
t.Views().StagingSecondary(). t.Views().StagingSecondary().
IsFocused(). IsFocused().
Press(keys.Main.ToggleSelectHunk).
SelectedLines( SelectedLines(
Contains(`-3a`), Contains(`-3a`),
Contains(`+3b`), Contains(`+3b`),

View File

@ -31,6 +31,7 @@ var DiscardAllChanges = NewIntegrationTest(NewIntegrationTestArgs{
t.Views().Staging(). t.Views().Staging().
IsFocused(). IsFocused().
Press(keys.Main.ToggleSelectHunk).
SelectedLines(Contains("+three")). SelectedLines(Contains("+three")).
// discard the line // discard the line
Press(keys.Universal.Remove). Press(keys.Universal.Remove).

View File

@ -9,7 +9,9 @@ var StageHunks = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Stage and unstage various hunks of a file in the staging panel", Description: "Stage and unstage various hunks of a file in the staging panel",
ExtraCmdArgs: []string{}, ExtraCmdArgs: []string{},
Skip: false, Skip: false,
SetupConfig: func(config *config.AppConfig) {}, SetupConfig: func(config *config.AppConfig) {
config.GetUserConfig().Gui.UseHunkModeInStagingView = false
},
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
shell.CreateFileAndAdd("file1", "1a\n2a\n3a\n4a\n5a\n6a\n7a\n8a") shell.CreateFileAndAdd("file1", "1a\n2a\n3a\n4a\n5a\n6a\n7a\n8a")
shell.Commit("one") shell.Commit("one")

View File

@ -9,7 +9,9 @@ var StageLines = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Stage and unstage various lines of a file in the staging panel", Description: "Stage and unstage various lines of a file in the staging panel",
ExtraCmdArgs: []string{}, ExtraCmdArgs: []string{},
Skip: false, Skip: false,
SetupConfig: func(config *config.AppConfig) {}, SetupConfig: func(config *config.AppConfig) {
config.GetUserConfig().Gui.UseHunkModeInStagingView = false
},
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
shell.CreateFileAndAdd("file1", "one\ntwo\n") shell.CreateFileAndAdd("file1", "one\ntwo\n")
shell.Commit("one") shell.Commit("one")

View File

@ -9,7 +9,9 @@ var StageRanges = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Stage and unstage various ranges of a file in the staging panel", Description: "Stage and unstage various ranges of a file in the staging panel",
ExtraCmdArgs: []string{}, ExtraCmdArgs: []string{},
Skip: false, Skip: false,
SetupConfig: func(config *config.AppConfig) {}, SetupConfig: func(config *config.AppConfig) {
config.GetUserConfig().Gui.UseHunkModeInStagingView = false
},
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
shell.CreateFileAndAdd("file1", "one\ntwo\n") shell.CreateFileAndAdd("file1", "one\ntwo\n")
shell.Commit("one") shell.Commit("one")

View File

@ -26,7 +26,6 @@ var StashStagedPartialFile = NewIntegrationTest(NewIntegrationTestArgs{
Contains(" line1\n-line2\n+line2 mod\n line3\n-line4\n+line4 mod"), Contains(" line1\n-line2\n+line2 mod\n line3\n-line4\n+line4 mod"),
). ).
PressPrimaryAction(). PressPrimaryAction().
PressPrimaryAction().
Content( Content(
Contains(" line1\n line2 mod\n line3\n-line4\n+line4 mod"), Contains(" line1\n line2 mod\n line3\n-line4\n+line4 mod"),
). ).

View File

@ -31,7 +31,9 @@ var RangeSelect = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Verify range select works as expected in list views and in patch explorer views", Description: "Verify range select works as expected in list views and in patch explorer views",
ExtraCmdArgs: []string{}, ExtraCmdArgs: []string{},
Skip: false, Skip: false,
SetupConfig: func(config *config.AppConfig) {}, SetupConfig: func(config *config.AppConfig) {
config.GetUserConfig().Gui.UseHunkModeInStagingView = false
},
SetupRepo: func(shell *Shell) { SetupRepo: func(shell *Shell) {
// We're testing the commits view as our representative list context, // We're testing the commits view as our representative list context,
// as well as the staging view, and we're using the exact same code to test // as well as the staging view, and we're using the exact same code to test

View File

@ -569,7 +569,7 @@
"useHunkModeInStagingView": { "useHunkModeInStagingView": {
"type": "boolean", "type": "boolean",
"description": "If true, hunk selection mode will be enabled by default when entering the staging view.", "description": "If true, hunk selection mode will be enabled by default when entering the staging view.",
"default": false "default": true
}, },
"language": { "language": {
"type": "string", "type": "string",