summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
AgeCommit message (Collapse)Author
2019-10-27#480 Allow cycling side panels with number keysGiorgio Previtera
2019-09-01switch to Go modulesDawid Dziurla
2019-07-14472 - Update error messageGiorgio Previtera
2019-07-14472 - Don't panic if not in a repositoryGiorgio Previtera
Display a friendly message and exit with an error if not in a Git repository. Using the same approach used in this PR: https://github.com/jesseduffield/lazydocker/pull/14/files
2019-06-06allow stashing staged changesJesse Duffield
reinstate old stash functionality with the 's' keybinding
2019-05-26request explicit return from subprocessJesse Duffield
Previously we were recording output from subprocesses using a multiwriter and hooking that up to the cmd's stdout to write to both os.Stdout and a buffer. We would then display the output after the program finished. This worked well for commands like 'ls' but not for commands like 'vi' which expect you to be in a tty, and when you've got the cmd's stdout pointing at a multiwriter, the subprogram thinks we're not in a tty and then things like terminal corruption can happen. This was the case with neovim, and even in vim a warning was given with a pause before starting the program. Now we're chucking out the multiwriter and instead making it that you need to press enter after the program has finished to return to lazygit. This allows you to view the output of the program (e.g. if it's ls) and then decide that you want to return. It's one level of unnecessary redirection for editors like vim, but even they could potentially have output to stderr/stdout that you want to look at before returning. Please enter the commit message for your changes. Lines starting
2019-05-06support resetting to a commit in either soft, hard, or mixed modeJesse Duffield
2019-04-26Fixed another view thingsmjarkk
2019-04-26Fixed sugestionsmjarkk
2019-04-26Translated missing sentencesmjarkk
2019-04-13add english translations to dutch/polish i18n files for translation laterJesse Duffield
2019-04-13Add 'w' keybinding in files panel to commit as a WIPJesse Duffield
If your git.skipHookPrefix is set to, say, WIP, in your config, then hitting 'w' in the files panel will bring up the commit message panel with 'WIP' pre-filled, so you just need to hit enter to confirm (or add some more to the message) in order to commit your changes with the --no-verify flag, meaning the pre-commit hook will be skipped
2019-04-10Always include atleast 2 commits when doing squash and fixupPeter Lundberg
2019-04-07support custom commandsJesse Duffield
2019-04-07Allow for creating fixup! commitsJesse Duffield
2019-04-06fixed some #397skanehira
2019-04-06add feature of display diff between specific commits #397skanehira
2019-03-23move soft reset keybinding into reset optionsJesse Duffield
2019-03-23add more options for resetting files in the working treeJesse Duffield
2019-03-23support discarding unstaged changesJesse Duffield
2019-03-18generate commit files keybindskanehira
2019-03-16allow autostashing changes when checking out a branchJesse Duffield
2019-03-16prompt user to git init when outside a repoJesse Duffield
2019-03-16i18n for error message about a feature being disabled for GPG usersJesse Duffield
2019-03-16allow user to discard old file changes for a given commitJesse Duffield
2019-03-16allow user to checkout old filesJesse Duffield
2019-03-16minor cleanupJesse Duffield
2019-03-16Add feature of display committed file list #383skanehira
2019-03-03i18n for rebase loading statesJesse Duffield
2019-03-03distinguish between inline and non-inline merge conflictsJesse Duffield
2019-03-02populate dutch and polish i18n files with new messagesJesse Duffield
2019-03-02extend cheatsheet generator to contain context based keybindingsJesse Duffield
2019-03-02update i18nJesse Duffield
2019-02-24cleanupJesse Duffield Duffield
2019-02-24support cherry picking commitsJesse Duffield Duffield
2019-02-24Make it easier to run sync/async commands, switch to interactive rebase when ↵Jesse Duffield Duffield
rebasing on branches
2019-02-24some i18n and restricting rewording during interactive rebaseJesse Duffield
2019-02-24rearranging todo items while interactively rebasingJesse Duffield
2019-02-19work towards more interactive rebase optionsJesse Duffield
2019-02-18add various interactive rebase commandsJesse Duffield
2019-02-18dealing better with errors at the top levelJesse Duffield
2019-02-16more work on rebasing featureJesse Duffield
2019-02-16introduce panel contexts and more work on rebasingJesse Duffield
2019-02-11Merge branch 'master' into feature/rebasingJesse Duffield
2018-12-20Update dutch.goMark Kopenga
2018-12-20Fixed suggestion from glvr182Mark Kopenga
2018-12-20Added dutch translationsmjarkk
2018-12-20i18n: pl translationDawid Dziurla
2018-12-12move fetch keybinding to files view to make way for branch-specific fetchedJesse Duffield
2018-12-11Make merge panel its own panelJesse Duffield