Skip to content

Commit 55e16b0

Browse files
committed
jrnxf
1 parent 7562442 commit 55e16b0

File tree

18 files changed

+72
-76
lines changed

18 files changed

+72
-76
lines changed

.github/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ further defined and clarified by project maintainers.
6767
## Enforcement
6868

6969
Instances of abusive, harassing, or otherwise unacceptable behavior may be
70-
reported by contacting me directly at [email protected]. All complaints
70+
reported by contacting me directly at [email protected]. All complaints
7171
will be reviewed and investigated and will result in a response that is deemed
7272
necessary and appropriate to the circumstances. The project team is obligated
7373
to maintain confidentiality with regard to the reporter of an incident. Further

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ merge of your pull request!
2626
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
2727

2828
- [ ] `Allow edits from maintainers` option checked
29-
- [ ] Branch name is prefixed with `[your_username]/` (ex. `thatvegandev/featureX`)
29+
- [ ] Branch name is prefixed with `[your_username]/` (ex. `jrnxf/feature_xyz`)
3030
- [ ] Documentation added
3131
- [ ] Tests added
3232
- [ ] No failing actions

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
🦎 gh extension to explore the ecosystem
44

55
[![GitHub Go
6-
Workflow](https://github.com/thatvegandev/gh-eco/actions/workflows/ci.yml/badge.svg)](https://github.com/thatvegandev/gh-eco/actions/workflows/ci.yml)
6+
Workflow](https://github.com/jrnxf/gh-eco/actions/workflows/ci.yml/badge.svg)](https://github.com/jrnxf/gh-eco/actions/workflows/ci.yml)
77
[![License](https://img.shields.io/badge/License-MIT-default.svg)](./LICENSE.md) [![Github
8-
Stars](https://img.shields.io/github/stars/thatvegandev/gh-eco)](https://github.com/thatvegandev/gh-eco/stargazers)
8+
Stars](https://img.shields.io/github/stars/jrnxf/gh-eco)](https://github.com/jrnxf/gh-eco/stargazers)
99

10-
![demo](https://github.com/thatvegandev/assets/raw/main/gh-eco/demo.gif)
10+
![demo](https://github.com/jrnxf/assets/raw/main/gh-eco/demo.gif)
1111

1212
## Installation
1313

@@ -18,7 +18,7 @@ Stars](https://img.shields.io/github/stars/thatvegandev/gh-eco)](https://github.
1818
2. Install this extension:
1919

2020
```sh
21-
gh extension install thatvegandev/gh-eco
21+
gh extension install jrnxf/gh-eco
2222
```
2323

2424
<details>
@@ -30,10 +30,10 @@ Stars](https://img.shields.io/github/stars/thatvegandev/gh-eco)](https://github.
3030

3131
```sh
3232
# git
33-
git clone https://github.com/thatvegandev/gh-eco
33+
git clone https://github.com/jrnxf/gh-eco
3434

3535
# GitHub CLI
36-
gh repo clone thatvegandev/gh-eco
36+
gh repo clone jrnxf/gh-eco
3737
```
3838

3939
2. `cd` into it
@@ -42,10 +42,10 @@ Stars](https://img.shields.io/github/stars/thatvegandev/gh-eco)](https://github.
4242
cd gh-eco
4343
```
4444

45-
3. build it
45+
3. add dependencies and build it
4646

4747
```sh
48-
gh build
48+
go get && go build
4949
```
5050

5151
4. install it locally
@@ -121,9 +121,9 @@ this please feel free to open an issue / pull request and start the discussion!
121121
All contributions are greatly appreciated!
122122

123123
If you have a suggestion that would make `gh-eco` better, please fork the repo and create a [pull
124-
request](https://github.com/thatvegandev/gh-eco/pulls) or open an issue.
124+
request](https://github.com/jrnxf/gh-eco/pulls) or open an issue.
125125

126-
See the [open issues](https://github.com/thatvegandev/gh-eco/issues) for a full list of proposed
126+
See the [open issues](https://github.com/jrnxf/gh-eco/issues) for a full list of proposed
127127
features (and known bugs).
128128

129129
## License
@@ -139,6 +139,6 @@ Check out these amazing projects that inspired `gh-eco`!
139139

140140
## Follow
141141

142-
[![github](https://img.shields.io/github/followers/thatvegandev?style=social)](https://github.com/thatvegandev)
143-
[![twitter](https://img.shields.io/twitter/follow/thatvegandev?color=white&style=social)](https://twitter.com/thatvegandev)
142+
[![github](https://img.shields.io/github/followers/jrnxf?style=social)](https://github.com/jrnxf)
143+
[![twitter](https://img.shields.io/twitter/follow/_jrnxf?color=white&style=social)](https://twitter.com/_jrnxf)
144144
[![youtube](https://img.shields.io/youtube/channel/subscribers/UCEDfokz6igeN4bX7Whq49-g?style=social)](https://youtube.com/user/thatvegandev)

api/github/github.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55

66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/cli/go-gh"
8+
"github.com/jrnxf/gh-eco/api/github/mutations"
9+
"github.com/jrnxf/gh-eco/api/github/queries"
10+
"github.com/jrnxf/gh-eco/ui/commands"
11+
"github.com/jrnxf/gh-eco/utils"
812
graphql "github.com/shurcooL/graphql"
9-
"github.com/thatvegandev/gh-eco/api/github/mutations"
10-
"github.com/thatvegandev/gh-eco/api/github/queries"
11-
"github.com/thatvegandev/gh-eco/ui/commands"
12-
"github.com/thatvegandev/gh-eco/utils"
1313
)
1414

1515
const GH_ECO_REPO_ID string = "R_kgDOHVAImQ"

go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/thatvegandev/gh-eco
1+
module github.com/jrnxf/gh-eco
22

33
go 1.17
44

@@ -9,7 +9,7 @@ require (
99
github.com/charmbracelet/lipgloss v0.5.0
1010
github.com/cli/go-gh v0.0.3
1111
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a
12-
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed
12+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
1313
)
1414

1515
require (
@@ -25,15 +25,15 @@ require (
2525
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
2626
github.com/mattn/go-isatty v0.0.14 // indirect
2727
github.com/mattn/go-runewidth v0.0.13 // indirect
28-
github.com/microcosm-cc/bluemonday v1.0.17 // indirect
28+
github.com/microcosm-cc/bluemonday v1.0.21 // indirect
2929
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
3030
github.com/muesli/reflow v0.3.0 // indirect
3131
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739 // indirect
3232
github.com/olekukonko/tablewriter v0.0.5 // indirect
3333
github.com/rivo/uniseg v0.2.0 // indirect
3434
github.com/yuin/goldmark v1.4.4 // indirect
3535
github.com/yuin/goldmark-emoji v1.0.1 // indirect
36-
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
37-
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
36+
golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect
37+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
3838
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
3939
)

go.sum

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ=
21
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
32
github.com/alecthomas/chroma v0.10.0 h1:7XDcGkCQopCNKjZHfYrNLraA+M7e0fMiJ/Mfikbfjek=
43
github.com/alecthomas/chroma v0.10.0/go.mod h1:jtJATyUxlIORhUOFNA9NZDWGAQ8wpxQQqNSB4rjA/1s=
@@ -27,18 +26,15 @@ github.com/containerd/console v1.0.2/go.mod h1:ytZPjGgY2oeTkAONYafi2kSj0aYggsf8a
2726
github.com/containerd/console v1.0.3 h1:lIr7SlA5PxZyMV30bDW0MGbiOPXwc63yRuCP0ARubLw=
2827
github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U=
2928
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
30-
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
3129
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3230
github.com/dlclark/regexp2 v1.4.0 h1:F1rxgk7p4uKjwIQxBs9oAXe5CqrXlCduYEJvrF4u93E=
3331
github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
3432
github.com/gorilla/css v1.0.0 h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=
3533
github.com/gorilla/css v1.0.0/go.mod h1:Dn721qIggHpt4+EFCcTLTU/vk5ySda2ReITrtgBl60c=
3634
github.com/henvic/httpretty v0.0.6 h1:JdzGzKZBajBfnvlMALXXMVQWxWMF/ofTy8C3/OSUTxs=
3735
github.com/henvic/httpretty v0.0.6/go.mod h1:X38wLjWXHkXT7r2+uK8LjCMne9rsuNaBLJ+5cU2/Pmo=
38-
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
3936
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
4037
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
41-
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
4238
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
4339
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
4440
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
@@ -51,8 +47,9 @@ github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRC
5147
github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
5248
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
5349
github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
54-
github.com/microcosm-cc/bluemonday v1.0.17 h1:Z1a//hgsQ4yjC+8zEkV8IWySkXnsxmdSY642CTFQb5Y=
5550
github.com/microcosm-cc/bluemonday v1.0.17/go.mod h1:Z0r70sCuXHig8YpBzCc5eGHAap2K7e/u082ZUpDRRqM=
51+
github.com/microcosm-cc/bluemonday v1.0.21 h1:dNH3e4PSyE4vNX+KlRGHT5KrSvjeUkoNPwEORjffHJg=
52+
github.com/microcosm-cc/bluemonday v1.0.21/go.mod h1:ytNkv4RrDrLJ2pqlsSI46O6IVXmZOBBD4SaJyDwwTkM=
5653
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b h1:1XF24mVaiu7u+CFywTdcDo2ie1pzzhwjt6RHqzpMU34=
5754
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b/go.mod h1:fQuZ0gauxyBcmsdE3ZT4NasjaRdxmbCS0jRHsrWu3Ho=
5855
github.com/muesli/reflow v0.2.1-0.20210115123740-9e1d0d53df68/go.mod h1:Xk+z4oIWdQqJzsxyjgl3P22oYZnHdZ8FFTHAQQt5BMQ=
@@ -65,7 +62,6 @@ github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739/go.mod h1:Bd5NYQ
6562
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
6663
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
6764
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
68-
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
6965
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
7066
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
7167
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
@@ -74,31 +70,31 @@ github.com/sahilm/fuzzy v0.1.0/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8
7470
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a h1:KikTa6HtAK8cS1qjvUvvq4QO21QnwC+EfvB+OAuZ/ZU=
7571
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a/go.mod h1:AuYgA5Kyo4c7HfUmvRGs/6rGlMMV/6B1bVnB9JxJEEg=
7672
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
77-
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
7873
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
7974
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
8075
github.com/yuin/goldmark v1.4.4 h1:zNWRjYUW32G9KirMXYHQHVNFkXvMI7LpgNW2AgYAoIs=
8176
github.com/yuin/goldmark v1.4.4/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
8277
github.com/yuin/goldmark-emoji v1.0.1 h1:ctuWEyzGBwiucEqxzwe0SOYDXPAucOrE9NQC18Wa1os=
8378
github.com/yuin/goldmark-emoji v1.0.1/go.mod h1:2w1E6FEWLcDQkoTE+7HU6QF1F6SLlNGjRIBbIZQFqkQ=
8479
golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
85-
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE=
8680
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
81+
golang.org/x/net v0.0.0-20221002022538-bcab6841153b h1:6e93nYa3hNqAvLr0pD4PN1fFS+gKzp2zAXqrnTCstqU=
82+
golang.org/x/net v0.0.0-20221002022538-bcab6841153b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
8783
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
8884
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
8985
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
9086
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
9187
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
9288
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
93-
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 h1:id054HUawV2/6IGm2IV8KZQjqtwAOo2CYlOToYqa0d0=
94-
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
89+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg=
90+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
9591
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
96-
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed h1:Ei4bQjjpYUsS4efOUz+5Nz++IVkHk87n2zBA0NxBWc0=
9792
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
93+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
94+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
9895
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
9996
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
10097
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
101-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
10298
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
10399
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
104100
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55

66
tea "github.com/charmbracelet/bubbletea"
7-
"github.com/thatvegandev/gh-eco/ui"
7+
"github.com/jrnxf/gh-eco/ui"
88
)
99

1010
func main() {

ui/commands/commands.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package commands
22

3-
import "github.com/thatvegandev/gh-eco/ui/models"
3+
import "github.com/jrnxf/gh-eco/ui/models"
44

55
type FocusChange struct{}
66

ui/components/graph/graph.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"strings"
55

66
"github.com/charmbracelet/lipgloss"
7-
"github.com/thatvegandev/gh-eco/ui/models"
8-
"github.com/thatvegandev/gh-eco/utils"
7+
"github.com/jrnxf/gh-eco/ui/models"
8+
"github.com/jrnxf/gh-eco/utils"
99
)
1010

1111
var (

ui/components/help/help.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"github.com/charmbracelet/bubbles/key"
66
tea "github.com/charmbracelet/bubbletea"
77

8-
"github.com/thatvegandev/gh-eco/ui/context"
9-
"github.com/thatvegandev/gh-eco/utils"
8+
"github.com/jrnxf/gh-eco/ui/context"
9+
"github.com/jrnxf/gh-eco/utils"
1010
)
1111

1212
type Model struct {

ui/components/markdown/markdown.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/thatvegandev/gh-eco/ui/commands"
8-
"github.com/thatvegandev/gh-eco/ui/context"
9-
"github.com/thatvegandev/gh-eco/ui/styles"
10-
"github.com/thatvegandev/gh-eco/utils"
7+
"github.com/jrnxf/gh-eco/ui/commands"
8+
"github.com/jrnxf/gh-eco/ui/context"
9+
"github.com/jrnxf/gh-eco/ui/styles"
10+
"github.com/jrnxf/gh-eco/utils"
1111

1212
"github.com/charmbracelet/bubbles/viewport"
1313
tea "github.com/charmbracelet/bubbletea"

ui/components/message/message.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
tea "github.com/charmbracelet/bubbletea"
88
"github.com/charmbracelet/lipgloss"
99

10-
"github.com/thatvegandev/gh-eco/ui/commands"
11-
"github.com/thatvegandev/gh-eco/ui/context"
12-
"github.com/thatvegandev/gh-eco/utils"
10+
"github.com/jrnxf/gh-eco/ui/commands"
11+
"github.com/jrnxf/gh-eco/ui/context"
12+
"github.com/jrnxf/gh-eco/utils"
1313
)
1414

1515
type Model struct {

ui/components/repo/repo.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"strings"
66

77
"github.com/charmbracelet/lipgloss"
8-
"github.com/thatvegandev/gh-eco/ui/context"
9-
"github.com/thatvegandev/gh-eco/ui/models"
10-
"github.com/thatvegandev/gh-eco/ui/styles"
11-
"github.com/thatvegandev/gh-eco/utils"
8+
"github.com/jrnxf/gh-eco/ui/context"
9+
"github.com/jrnxf/gh-eco/ui/models"
10+
"github.com/jrnxf/gh-eco/ui/styles"
11+
"github.com/jrnxf/gh-eco/utils"
1212
)
1313

1414
func buildRepoDisplay(repo models.Repo, width int, isFocused bool, viewerHasStarred bool) string {

ui/components/search/search.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88
"github.com/charmbracelet/bubbles/textinput"
99
tea "github.com/charmbracelet/bubbletea"
1010
"github.com/charmbracelet/lipgloss"
11-
"github.com/thatvegandev/gh-eco/api/github"
12-
"github.com/thatvegandev/gh-eco/ui/commands"
13-
"github.com/thatvegandev/gh-eco/ui/components/spinner"
14-
"github.com/thatvegandev/gh-eco/ui/context"
15-
"github.com/thatvegandev/gh-eco/utils"
11+
"github.com/jrnxf/gh-eco/api/github"
12+
"github.com/jrnxf/gh-eco/ui/commands"
13+
"github.com/jrnxf/gh-eco/ui/components/spinner"
14+
"github.com/jrnxf/gh-eco/ui/context"
15+
"github.com/jrnxf/gh-eco/utils"
1616
)
1717

1818
type Model struct {

ui/components/user/user.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77

88
tea "github.com/charmbracelet/bubbletea"
99
"github.com/charmbracelet/lipgloss"
10-
"github.com/thatvegandev/gh-eco/ui/commands"
11-
"github.com/thatvegandev/gh-eco/ui/components/graph"
12-
"github.com/thatvegandev/gh-eco/ui/components/repo"
13-
"github.com/thatvegandev/gh-eco/ui/context"
14-
"github.com/thatvegandev/gh-eco/ui/models"
15-
"github.com/thatvegandev/gh-eco/ui/styles"
16-
"github.com/thatvegandev/gh-eco/utils"
10+
"github.com/jrnxf/gh-eco/ui/commands"
11+
"github.com/jrnxf/gh-eco/ui/components/graph"
12+
"github.com/jrnxf/gh-eco/ui/components/repo"
13+
"github.com/jrnxf/gh-eco/ui/context"
14+
"github.com/jrnxf/gh-eco/ui/models"
15+
"github.com/jrnxf/gh-eco/ui/styles"
16+
"github.com/jrnxf/gh-eco/utils"
1717
"golang.org/x/term"
1818
)
1919

ui/context/context.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package context
22

3-
import "github.com/thatvegandev/gh-eco/ui/models"
3+
import "github.com/jrnxf/gh-eco/ui/models"
44

55
type Mode int
66

ui/ui.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import (
66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/charmbracelet/lipgloss"
88

9-
"github.com/thatvegandev/gh-eco/api/github"
10-
"github.com/thatvegandev/gh-eco/ui/commands"
11-
"github.com/thatvegandev/gh-eco/ui/components/help"
12-
"github.com/thatvegandev/gh-eco/ui/components/markdown"
13-
"github.com/thatvegandev/gh-eco/ui/components/message"
14-
"github.com/thatvegandev/gh-eco/ui/components/search"
15-
"github.com/thatvegandev/gh-eco/ui/components/user"
16-
"github.com/thatvegandev/gh-eco/ui/context"
17-
"github.com/thatvegandev/gh-eco/utils"
9+
"github.com/jrnxf/gh-eco/api/github"
10+
"github.com/jrnxf/gh-eco/ui/commands"
11+
"github.com/jrnxf/gh-eco/ui/components/help"
12+
"github.com/jrnxf/gh-eco/ui/components/markdown"
13+
"github.com/jrnxf/gh-eco/ui/components/message"
14+
"github.com/jrnxf/gh-eco/ui/components/search"
15+
"github.com/jrnxf/gh-eco/ui/components/user"
16+
"github.com/jrnxf/gh-eco/ui/context"
17+
"github.com/jrnxf/gh-eco/utils"
1818
)
1919

2020
type Model struct {

utils/utils.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strings"
99
"unicode"
1010

11-
"github.com/thatvegandev/gh-eco/api/github/queries"
12-
"github.com/thatvegandev/gh-eco/ui/models"
11+
"github.com/jrnxf/gh-eco/api/github/queries"
12+
"github.com/jrnxf/gh-eco/ui/models"
1313
)
1414

1515
func TruncateText(str string, max int) string {

0 commit comments

Comments
 (0)