Skip to content

Commit

Permalink
chore: rename package to github.com prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmedeski committed Jan 15, 2024
1 parent b8113a0 commit 0e69ced
Show file tree
Hide file tree
Showing 14 changed files with 39 additions and 19 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
<p align="center">
<img width="50%" height="50%" src="https://github.com/arl/gitmux/raw/readme-images/logo-transparent.png" />
</p>

<p align="center">Gitmux shows git status in your tmux status bar</p>

<hr/>

<p align="center">
<a href="https://github.com/joshmedeski/sesh/actions/workflows/ci-cd.yaml">
<img alt="tests" src="https://github.com/joshmedeski/sesh/actions/workflows/ci-cd.yaml/badge.svg" />
</a>
<a href="https://goreportcard.com/report/github.com/arl/gitmux">
<img alt="goreport" src="https://goreportcard.com/badge/github.com/arl/gitmux" />
</a>
<a href="https://opensource.org/licenses/MIT">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" />
</a>
</p>

# sesh

Smart session manager tooling for the terminal.
Expand Down
4 changes: 2 additions & 2 deletions cmds/choose.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package cmds

import (
"bytes"
"joshmedeski/sesh/connect"
"joshmedeski/sesh/session"
"github.com/joshmedeski/sesh/connect"
"github.com/joshmedeski/sesh/session"
"log"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion cmds/connect.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmds

import (
"joshmedeski/sesh/connect"
"github.com/joshmedeski/sesh/connect"

"github.com/urfave/cli/v2"
)
Expand Down
2 changes: 1 addition & 1 deletion cmds/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmds

import (
"fmt"
"joshmedeski/sesh/session"
"github.com/joshmedeski/sesh/session"
"strings"

"github.com/urfave/cli/v2"
Expand Down
6 changes: 3 additions & 3 deletions connect/connect.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package connect

import (
"joshmedeski/sesh/session"
"joshmedeski/sesh/tmux"
"joshmedeski/sesh/zoxide"
"github.com/joshmedeski/sesh/session"
"github.com/joshmedeski/sesh/tmux"
"github.com/joshmedeski/sesh/zoxide"
)

func Connect(choice string, alwaysSwitch bool) error {
Expand Down
2 changes: 1 addition & 1 deletion convert/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package convert

import (
"fmt"
"joshmedeski/sesh/dir"
"github.com/joshmedeski/sesh/dir"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module joshmedeski/sesh
module github.com/joshmedeski/sesh

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"joshmedeski/sesh/seshcli"
"github.com/joshmedeski/sesh/seshcli"
"log"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion seshcli/seshcli.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package seshcli

import (
"joshmedeski/sesh/cmds"
"github.com/joshmedeski/sesh/cmds"

"github.com/urfave/cli/v2"
)
Expand Down
4 changes: 2 additions & 2 deletions session/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package session

import (
"fmt"
"joshmedeski/sesh/tmux"
"joshmedeski/sesh/zoxide"
"github.com/joshmedeski/sesh/tmux"
"github.com/joshmedeski/sesh/zoxide"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion session/name.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package session

import (
"joshmedeski/sesh/git"
"github.com/joshmedeski/sesh/git"
"path"
"path/filepath"
"strings"
Expand Down
4 changes: 2 additions & 2 deletions session/path.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package session

import (
"joshmedeski/sesh/dir"
"joshmedeski/sesh/tmux"
"github.com/joshmedeski/sesh/dir"
"github.com/joshmedeski/sesh/tmux"
"path"
)

Expand Down
2 changes: 1 addition & 1 deletion tmux/list.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tmux

import (
"joshmedeski/sesh/convert"
"github.com/joshmedeski/sesh/convert"
"strings"
"time"
)
Expand Down
4 changes: 2 additions & 2 deletions zoxide/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package zoxide

import (
"fmt"
"joshmedeski/sesh/convert"
"joshmedeski/sesh/tmux"
"github.com/joshmedeski/sesh/convert"
"github.com/joshmedeski/sesh/tmux"
"os"
"strings"
)
Expand Down

0 comments on commit 0e69ced

Please sign in to comment.