Mercurial > hg-stable
changeset 48218:c7690fabce5f
chistedit: move patchcontents() onto state class
Differential Revision: https://phab.mercurial-scm.org/D11642
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 12 Oct 2021 08:56:56 -0700 |
parents | 3fdeb657602f |
children | fb30ad66a572 |
files | hgext/histedit.py |
diffstat | 1 files changed, 16 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/histedit.py Tue Oct 12 08:55:19 2021 -0700 +++ b/hgext/histedit.py Tue Oct 12 08:56:56 2021 -0700 @@ -1218,7 +1218,7 @@ curmode, _ = state.mode state.mode = (mode, curmode) if mode == MODE_PATCH: - state.modes[MODE_PATCH][b'patchcontents'] = patchcontents(state) + state.modes[MODE_PATCH][b'patchcontents'] = state.patch_contents() def makeselection(state, pos): @@ -1325,19 +1325,6 @@ return line[: n - 2] + b' >' -def patchcontents(state): - repo = state.repo - rule = state.rules[state.pos] - displayer = logcmdutil.changesetdisplayer( - repo.ui, repo, {b"patch": True, b"template": b"status"}, buffered=True - ) - overrides = {(b'ui', b'verbose'): True} - with repo.ui.configoverride(overrides, source=b'histedit'): - displayer.show(rule.ctx) - displayer.close() - return displayer.hunk[rule.ctx.rev()].splitlines() - - class _chistedit_state(object): def __init__( self, @@ -1590,6 +1577,21 @@ elif action == b'line-up': return E_LINEUP + def patch_contents(self): + repo = self.repo + rule = self.rules[self.pos] + displayer = logcmdutil.changesetdisplayer( + repo.ui, + repo, + {b"patch": True, b"template": b"status"}, + buffered=True, + ) + overrides = {(b'ui', b'verbose'): True} + with repo.ui.configoverride(overrides, source=b'histedit'): + displayer.show(rule.ctx) + displayer.close() + return displayer.hunk[rule.ctx.rev()].splitlines() + def _chisteditmain(repo, rules, stdscr): try: