diff options
| author | İbrahim Serdar Açıkgöz <serdaracikgoz86@gmail.com> | 2018-12-07 18:34:45 +0300 |
|---|---|---|
| committer | İbrahim Serdar Açıkgöz <serdaracikgoz86@gmail.com> | 2018-12-07 18:34:45 +0300 |
| commit | d7de2b4c7b689feac15a55fe47ffa68e56b9fd72 (patch) | |
| tree | 6f8dbe07cdb30cf7ccdd5920b36d0ef637182753 /pkg/gui/statusview.go | |
| parent | Merge remote-tracking branch 'origin/feature_status' into develop (diff) | |
| download | gitbatch-d7de2b4c7b689feac15a55fe47ffa68e56b9fd72.tar.gz | |
merge stash and status
Diffstat (limited to 'pkg/gui/statusview.go')
| -rw-r--r-- | pkg/gui/statusview.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/gui/statusview.go b/pkg/gui/statusview.go index e33e4c5..8ea6327 100644 --- a/pkg/gui/statusview.go +++ b/pkg/gui/statusview.go @@ -91,6 +91,11 @@ func (gui *Gui) openStashView(g *gocui.Gui) error { } v.Title = stashViewFeature.Title v.Wrap = true + entity := gui.getSelectedRepository() + stashedItems := entity.Stasheds + for _, stashedItem := range stashedItems { + fmt.Fprintln(v, stashedItem) + } } return nil } |
