summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-01-05Merge pull request #574 from jamiebrynes7/bugfix/apply-patch-windowsDawid Dziurla
Fix applying patch on Windows machines
2020-01-05fix applying patch on Windows machineJamie Brynes
This bug was caused how the timestamp was formatted for the patch file. On Windows machines, ":" is an invalid character for a filename, but the `stampNano` format for time contains ":". This fix adjusts the time format to be the `stampNano` format with "." subsituted for ":".
2020-01-03Merge pull request #572 from matejcik/masterDawid Dziurla
make Ctrl+P visible
2020-01-03make Ctrl+P visiblematejcik
2020-01-03Merge pull request #573 from jesseduffield/ubuntu-readme-updateDawid Dziurla
README: update ubuntu info
2020-01-03README: update ubuntu infoDawid Dziurla
2019-12-13Merge pull request #564 from jesseduffield/update-depsDawid Dziurla
update dependencies
2019-12-13update dependenciesDawid Dziurla
2019-12-13Merge pull request #560 from tim77/tim77-patch-1Dawid Dziurla
Fedora installation instructions
2019-12-13Fedora installation instructionsArtem Polishchuk
2019-12-08stop the files panel from stealing focus whenever files are refreshedJesse Duffield
2019-12-07allow fetching remotes with 'f'Jesse Duffield
2019-12-07fix commit message char countJesse Duffield
2019-11-27Merge pull request #554 from jesseduffield/alias-V-v-keybindingDawid Dziurla
keybindings: alias V -> v
2019-11-27keybindings: alias V -> vDawid Dziurla
2019-11-26lenient sorting of tags on startupv0.11.3Jesse Duffield
2019-11-26support older versions of git when getting remote branchesJesse Duffield
2019-11-21unescape another stringv0.11.2Jesse Duffield
2019-11-21fix typov0.11.1Jesse Duffield
2019-11-21don't pass single commands directly to RunCommand (or equivalent function)Jesse Duffield
when it contains percentages. This is a really strange one. It's a linting warning in my editor and it doesn't stop me from compiling, but it breaks `go test`. A basic file to reproduce what I'm talking about: package main import "fmt" func main() { notSprintf("test %s") // compiler complains here thinking %s needs a corresponding argument } func notSprintf(formatStr string, formatArgs ...interface{}) string { if formatArgs != nil { return formatStr } return fmt.Sprintf(formatStr, formatArgs...) }
2019-11-21fix specsJesse Duffield
2019-11-21couple of things to clean up after rebasing onto masterJesse Duffield
2019-11-21give RunCommand the same input signature as fmt.SprintfJesse Duffield
2019-11-21add tags panelJesse Duffield
2019-11-21allow editing remotesJesse Duffield
2019-11-21require double clicking menu items so you know what you're clickingJesse Duffield
2019-11-21refactor confirmation prompt codeJesse Duffield
2019-11-21better handling of click events in list viewsJesse Duffield
2019-11-21support setting upstreamJesse Duffield
2019-11-21better fast forwardJesse Duffield
2019-11-21make upstream branch display more lenient on git errorsJesse Duffield
2019-11-21support rebasing onto remote branchJesse Duffield
2019-11-21support deleting remote branchesJesse Duffield
2019-11-21ensure we switch tabs when switching contextJesse Duffield
2019-11-21support merging remote branches into checked out branchJesse Duffield
2019-11-21support detached heads when showing the selected branchJesse Duffield
2019-11-21support adding/removing remotesJesse Duffield
2019-11-21split RemoteBranch out from BranchJesse Duffield
2019-11-21get branches with git for-each-refJesse Duffield
2019-11-21only refresh branches panel on focus lost when in the local-branches contextJesse Duffield
2019-11-21support viewing a remote branchJesse Duffield
2019-11-21support navigating remotes viewJesse Duffield
2019-11-21remove redundant loggingJesse Duffield
2019-11-21allow changing tabs with [ and ]Jesse Duffield
2019-11-21get remote branches when getting remotesJesse Duffield
2019-11-21trying to use gogit with branches from remotesJesse Duffield
2019-11-21extract out some logic for list viewsJesse Duffield
2019-11-21add contexts to viewsJesse Duffield
2019-11-21bump gocui to get contexts on keybindingsJesse Duffield
2019-11-21add remotes context to branches viewJesse Duffield