summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--cache/cache.go4
-rw-r--r--cache/cache_test.go4
-rw-r--r--completion/completion.go4
-rw-r--r--components.go2
-rw-r--r--describe/describe.go2
-rw-r--r--describe/describe_test.go2
-rw-r--r--env/env.go8
-rw-r--r--env/env_test.go2
-rw-r--r--git/git.go4
-rw-r--r--go.mod2
-rw-r--r--indexers/pikdex/hydrate.go2
-rw-r--r--indexers/pikdex/hydrate_test.go4
-rw-r--r--indexers/pikdex/index.go6
-rw-r--r--indexers/pikdex/index_test.go2
-rw-r--r--indexers/pikdex/meta.go4
-rw-r--r--main.go34
-rw-r--r--man/manview/data.go4
-rw-r--r--man/manview/manview.go2
-rw-r--r--man/view.go4
-rw-r--r--menu/banner.go8
-rw-r--r--menu/confirm.go6
-rw-r--r--menu/git.go4
-rw-r--r--menu/icon.go2
-rw-r--r--menu/menu.go4
-rw-r--r--menu/model.go10
-rw-r--r--menu/source.go4
-rw-r--r--menu/state.go2
-rw-r--r--menu/target.go6
-rw-r--r--model/new.go6
-rw-r--r--model/source.go6
-rw-r--r--modes.go14
-rw-r--r--order/order.go4
-rw-r--r--run/edit.go4
-rw-r--r--run/run.go8
-rw-r--r--runner/base.go6
-rw-r--r--runner/create.go4
-rw-r--r--runner/exc/runner.go8
-rw-r--r--runner/exc/target.go8
-rw-r--r--runner/gnumake/make.go6
-rw-r--r--runner/gnumake/target.go4
-rw-r--r--runner/js/indexer.go2
-rw-r--r--runner/js/js.go6
-rw-r--r--runner/js/runner.go6
-rw-r--r--runner/js/target_npm.go4
-rw-r--r--runner/js/target_script.go8
-rw-r--r--runner/just/just.go6
-rw-r--r--runner/just/target.go4
-rw-r--r--runner/python/file.go8
-rw-r--r--runner/python/indexer.go2
-rw-r--r--runner/python/proj.go4
-rw-r--r--runner/python/runner.go6
-rw-r--r--runner/shell/hydrated.go8
-rw-r--r--runner/shell/shell.go10
-rw-r--r--runner/shell/target.go4
-rw-r--r--runner/stub.go2
-rw-r--r--search/search.go2
-rw-r--r--search/search_test.go2
-rw-r--r--spool/exit.go2
-rw-r--r--viewport/scroll.go2
60 files changed, 155 insertions, 155 deletions
diff --git a/README.md b/README.md
index 0810bed..bbcd97b 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ Grab a build from here:
### go install
-```go install github.com/ewy1/pik@latest```
+```go install https://git.sr.ht/~ewy/pik@latest```
### manual install
diff --git a/cache/cache.go b/cache/cache.go
index 7121f65..f06716f 100644
--- a/cache/cache.go
+++ b/cache/cache.go
@@ -3,8 +3,8 @@ package cache
import (
"bufio"
"errors"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
"io"
"io/fs"
"os"
diff --git a/cache/cache_test.go b/cache/cache_test.go
index 76096ee..2980043 100644
--- a/cache/cache_test.go
+++ b/cache/cache_test.go
@@ -3,14 +3,14 @@
package cache
import (
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/paths"
"os"
"path/filepath"
"strings"
"testing"
"testing/fstest"
- . "github.com/ewy1/pik/runner"
+ . "git.sr.ht/~ewy/pik/runner"
"github.com/stretchr/testify/assert"
)
diff --git a/completion/completion.go b/completion/completion.go
index 6fc719f..6fa6814 100644
--- a/completion/completion.go
+++ b/completion/completion.go
@@ -4,8 +4,8 @@ import (
_ "embed"
"errors"
"fmt"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/spool"
"os"
"path/filepath"
"strings"
diff --git a/components.go b/components.go
index 7091ad1..7a7dcf1 100644
--- a/components.go
+++ b/components.go
@@ -1,7 +1,7 @@
package main
import (
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/spool"
"sync"
)
diff --git a/describe/describe.go b/describe/describe.go
index 0913409..db6063d 100644
--- a/describe/describe.go
+++ b/describe/describe.go
@@ -2,7 +2,7 @@ package describe
import (
"bufio"
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"io"
"os"
"strings"
diff --git a/describe/describe_test.go b/describe/describe_test.go
index c1bb318..93d4b13 100644
--- a/describe/describe_test.go
+++ b/describe/describe_test.go
@@ -3,7 +3,7 @@
package describe
import (
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/runner"
"github.com/stretchr/testify/assert"
"os"
"path/filepath"
diff --git a/env/env.go b/env/env.go
index ffc29bf..32d3de6 100644
--- a/env/env.go
+++ b/env/env.go
@@ -1,10 +1,10 @@
package env
import (
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/spool"
"github.com/joho/godotenv"
"io/fs"
"os"
diff --git a/env/env_test.go b/env/env_test.go
index 52dc950..ba88f0b 100644
--- a/env/env_test.go
+++ b/env/env_test.go
@@ -3,7 +3,7 @@
package env
import (
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"github.com/spf13/pflag"
"github.com/stretchr/testify/assert"
"os"
diff --git a/git/git.go b/git/git.go
index bf9c72a..a029989 100644
--- a/git/git.go
+++ b/git/git.go
@@ -2,8 +2,8 @@ package git
import (
"errors"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/spool"
"os"
"os/exec"
"path/filepath"
diff --git a/go.mod b/go.mod
index b8d9cb2..3804444 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/ewy1/pik
+module git.sr.ht/~ewy/pik
go 1.26.1
diff --git a/indexers/pikdex/hydrate.go b/indexers/pikdex/hydrate.go
index a0dfc2b..027c2cc 100644
--- a/indexers/pikdex/hydrate.go
+++ b/indexers/pikdex/hydrate.go
@@ -1,7 +1,7 @@
package pikdex
import (
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"strings"
)
diff --git a/indexers/pikdex/hydrate_test.go b/indexers/pikdex/hydrate_test.go
index cd2433a..f8388da 100644
--- a/indexers/pikdex/hydrate_test.go
+++ b/indexers/pikdex/hydrate_test.go
@@ -3,8 +3,8 @@
package pikdex
import (
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"github.com/stretchr/testify/assert"
"testing"
)
diff --git a/indexers/pikdex/index.go b/indexers/pikdex/index.go
index 15a74f4..1979e4d 100644
--- a/indexers/pikdex/index.go
+++ b/indexers/pikdex/index.go
@@ -2,9 +2,9 @@ package pikdex
import (
"errors"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/spool"
"io/fs"
"os"
"path"
diff --git a/indexers/pikdex/index_test.go b/indexers/pikdex/index_test.go
index 8a82e55..a4326e1 100644
--- a/indexers/pikdex/index_test.go
+++ b/indexers/pikdex/index_test.go
@@ -1,7 +1,7 @@
package pikdex
import (
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/paths"
"github.com/stretchr/testify/assert"
"io/fs"
"testing"
diff --git a/indexers/pikdex/meta.go b/indexers/pikdex/meta.go
index 69b3f92..777df51 100644
--- a/indexers/pikdex/meta.go
+++ b/indexers/pikdex/meta.go
@@ -1,9 +1,9 @@
package pikdex
import (
+ "git.sr.ht/~ewy/pik/describe"
+ "git.sr.ht/~ewy/pik/model"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/describe"
- "github.com/ewy1/pik/model"
"strings"
)
diff --git a/main.go b/main.go
index 89d90e6..7e229fe 100644
--- a/main.go
+++ b/main.go
@@ -3,23 +3,23 @@ package main
import (
_ "embed"
"fmt"
- "github.com/ewy1/pik/cache"
- "github.com/ewy1/pik/crawl"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/git"
- "github.com/ewy1/pik/indexers/pikdex"
- "github.com/ewy1/pik/menu"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/run"
- "github.com/ewy1/pik/runner/exc"
- "github.com/ewy1/pik/runner/gnumake"
- "github.com/ewy1/pik/runner/js"
- "github.com/ewy1/pik/runner/just"
- "github.com/ewy1/pik/runner/python"
- "github.com/ewy1/pik/runner/shell"
- "github.com/ewy1/pik/search"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/cache"
+ "git.sr.ht/~ewy/pik/crawl"
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/git"
+ "git.sr.ht/~ewy/pik/indexers/pikdex"
+ "git.sr.ht/~ewy/pik/menu"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/run"
+ "git.sr.ht/~ewy/pik/runner/exc"
+ "git.sr.ht/~ewy/pik/runner/gnumake"
+ "git.sr.ht/~ewy/pik/runner/js"
+ "git.sr.ht/~ewy/pik/runner/just"
+ "git.sr.ht/~ewy/pik/runner/python"
+ "git.sr.ht/~ewy/pik/runner/shell"
+ "git.sr.ht/~ewy/pik/search"
+ "git.sr.ht/~ewy/pik/spool"
"github.com/spf13/pflag"
"os"
"runtime/pprof"
diff --git a/man/manview/data.go b/man/manview/data.go
index 7e42fcc..8c21ffd 100644
--- a/man/manview/data.go
+++ b/man/manview/data.go
@@ -2,8 +2,8 @@ package manview
import (
_ "embed"
- _ "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/spool"
+ _ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/spool"
"github.com/spf13/pflag"
"runtime"
"runtime/debug"
diff --git a/man/manview/manview.go b/man/manview/manview.go
index 777f2cd..8dd7edd 100644
--- a/man/manview/manview.go
+++ b/man/manview/manview.go
@@ -3,7 +3,7 @@ package manview
import (
"embed"
_ "embed"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/spool"
"os"
"os/exec"
"strings"
diff --git a/man/view.go b/man/view.go
index bb4aac4..ecd5461 100644
--- a/man/view.go
+++ b/man/view.go
@@ -2,8 +2,8 @@ package main
import (
"embed"
- "github.com/ewy1/pik/man/manview"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/man/manview"
+ "git.sr.ht/~ewy/pik/spool"
"github.com/spf13/pflag"
"os"
"path/filepath"
diff --git a/menu/banner.go b/menu/banner.go
index cb809c0..0b51dea 100644
--- a/menu/banner.go
+++ b/menu/banner.go
@@ -1,11 +1,11 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/menu/style"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/menu/style"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
"os/exec"
"strings"
)
diff --git a/menu/confirm.go b/menu/confirm.go
index 30c3a48..a9f644a 100644
--- a/menu/confirm.go
+++ b/menu/confirm.go
@@ -3,10 +3,10 @@ package menu
import (
"bufio"
"fmt"
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/menu/style"
+ "git.sr.ht/~ewy/pik/model"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/menu/style"
- "github.com/ewy1/pik/model"
"io"
"os"
"slices"
diff --git a/menu/git.go b/menu/git.go
index ff3c8e7..8dc413e 100644
--- a/menu/git.go
+++ b/menu/git.go
@@ -1,9 +1,9 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/menu/style"
+ "git.sr.ht/~ewy/pik/model"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/menu/style"
- "github.com/ewy1/pik/model"
"strconv"
)
diff --git a/menu/icon.go b/menu/icon.go
index 102706e..c614ce3 100644
--- a/menu/icon.go
+++ b/menu/icon.go
@@ -1,8 +1,8 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/menu/style"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/menu/style"
"strings"
)
diff --git a/menu/menu.go b/menu/menu.go
index 2593d15..123c165 100644
--- a/menu/menu.go
+++ b/menu/menu.go
@@ -2,9 +2,9 @@ package menu
import (
"errors"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/spool"
tea "github.com/charmbracelet/bubbletea"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/spool"
)
var WrongModelTypeError = errors.New("wrong model type")
diff --git a/menu/model.go b/menu/model.go
index 302315a..68d55e3 100644
--- a/menu/model.go
+++ b/menu/model.go
@@ -1,14 +1,14 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/motd"
+ "git.sr.ht/~ewy/pik/spool"
+ "git.sr.ht/~ewy/pik/viewport"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/x/term"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/motd"
- "github.com/ewy1/pik/spool"
- "github.com/ewy1/pik/viewport"
"github.com/spf13/pflag"
"os"
"strings"
diff --git a/menu/source.go b/menu/source.go
index 2d02a5d..2384286 100644
--- a/menu/source.go
+++ b/menu/source.go
@@ -1,9 +1,9 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/menu/style"
+ "git.sr.ht/~ewy/pik/model"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/menu/style"
- "github.com/ewy1/pik/model"
"slices"
"strings"
)
diff --git a/menu/state.go b/menu/state.go
index 55da10b..5ccc11d 100644
--- a/menu/state.go
+++ b/menu/state.go
@@ -1,8 +1,8 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/menu/style"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/menu/style"
)
var (
diff --git a/menu/target.go b/menu/target.go
index ee31889..ad373cc 100644
--- a/menu/target.go
+++ b/menu/target.go
@@ -1,10 +1,10 @@
package menu
import (
+ "git.sr.ht/~ewy/pik/menu/style"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/viewport"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/menu/style"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/viewport"
)
var (
diff --git a/model/new.go b/model/new.go
index fc57ad0..a9346cb 100644
--- a/model/new.go
+++ b/model/new.go
@@ -2,9 +2,9 @@ package model
import (
"errors"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/spool"
"io/fs"
"path/filepath"
"strings"
diff --git a/model/source.go b/model/source.go
index 2844d23..9830d6f 100644
--- a/model/source.go
+++ b/model/source.go
@@ -1,9 +1,9 @@
package model
import (
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/spool"
)
// SourceData is data we want to save from a Source before it has been properly instantiated
diff --git a/modes.go b/modes.go
index ec0545f..7a64544 100644
--- a/modes.go
+++ b/modes.go
@@ -2,13 +2,13 @@ package main
import (
_ "embed"
- "github.com/ewy1/pik/completion"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/man/manview"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/run"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/completion"
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/man/manview"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/run"
+ "git.sr.ht/~ewy/pik/spool"
"os"
"path/filepath"
"runtime"
diff --git a/order/order.go b/order/order.go
index 155f067..0ebcb1c 100644
--- a/order/order.go
+++ b/order/order.go
@@ -2,8 +2,8 @@ package order
import (
"bufio"
- "github.com/ewy1/pik/describe"
- "github.com/ewy1/pik/identity"
+ "git.sr.ht/~ewy/pik/describe"
+ "git.sr.ht/~ewy/pik/identity"
"io"
"io/fs"
"os"
diff --git a/run/edit.go b/run/edit.go
index 47d6362..804218a 100644
--- a/run/edit.go
+++ b/run/edit.go
@@ -2,8 +2,8 @@ package run
import (
"errors"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/spool"
"os"
"os/exec"
)
diff --git a/run/run.go b/run/run.go
index eb9b434..8ff2ccb 100644
--- a/run/run.go
+++ b/run/run.go
@@ -2,10 +2,10 @@ package run
import (
"fmt"
- "github.com/ewy1/pik/env"
- "github.com/ewy1/pik/flags"
- "github.com/ewy1/pik/menu"
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/env"
+ "git.sr.ht/~ewy/pik/flags"
+ "git.sr.ht/~ewy/pik/menu"
+ "git.sr.ht/~ewy/pik/model"
"os"
"slices"
)
diff --git a/runner/base.go b/runner/base.go
index 4fcd3d0..d3cb98d 100644
--- a/runner/base.go
+++ b/runner/base.go
@@ -1,9 +1,9 @@
package runner
import (
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
"path/filepath"
"slices"
"strings"
diff --git a/runner/create.go b/runner/create.go
index f67ac7e..ebac861 100644
--- a/runner/create.go
+++ b/runner/create.go
@@ -3,8 +3,8 @@
package runner
import (
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
"github.com/stretchr/testify/assert"
"os/exec"
"testing"
diff --git a/runner/exc/runner.go b/runner/exc/runner.go
index 2eae44c..c6ae07f 100644
--- a/runner/exc/runner.go
+++ b/runner/exc/runner.go
@@ -1,10 +1,10 @@
package exc
import (
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
+ "git.sr.ht/~ewy/pik/spool"
"io/fs"
"path/filepath"
)
diff --git a/runner/exc/target.go b/runner/exc/target.go
index 2e4cf29..5f3437f 100644
--- a/runner/exc/target.go
+++ b/runner/exc/target.go
@@ -1,10 +1,10 @@
package exc
import (
- "github.com/ewy1/pik/describe"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/describe"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
+ "git.sr.ht/~ewy/pik/spool"
"os/exec"
)
diff --git a/runner/gnumake/make.go b/runner/gnumake/make.go
index b2e2de2..93b523a 100644
--- a/runner/gnumake/make.go
+++ b/runner/gnumake/make.go
@@ -2,9 +2,9 @@ package gnumake
import (
"errors"
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"io/fs"
"os/exec"
"path/filepath"
diff --git a/runner/gnumake/target.go b/runner/gnumake/target.go
index 8072c8c..d5caa24 100644
--- a/runner/gnumake/target.go
+++ b/runner/gnumake/target.go
@@ -1,8 +1,8 @@
package gnumake
import (
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"os/exec"
)
diff --git a/runner/js/indexer.go b/runner/js/indexer.go
index 8a2a6b2..056c426 100644
--- a/runner/js/indexer.go
+++ b/runner/js/indexer.go
@@ -3,7 +3,7 @@ package js
import (
"encoding/json"
"errors"
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"io/fs"
"os"
"path/filepath"
diff --git a/runner/js/js.go b/runner/js/js.go
index 7c2af58..ec48f3e 100644
--- a/runner/js/js.go
+++ b/runner/js/js.go
@@ -2,9 +2,9 @@ package js
import (
"errors"
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"os/exec"
"path/filepath"
"slices"
diff --git a/runner/js/runner.go b/runner/js/runner.go
index 8b5f4f1..22c03fc 100644
--- a/runner/js/runner.go
+++ b/runner/js/runner.go
@@ -1,9 +1,9 @@
package js
import (
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"io/fs"
"path/filepath"
"slices"
diff --git a/runner/js/target_npm.go b/runner/js/target_npm.go
index 8319fad..ad39114 100644
--- a/runner/js/target_npm.go
+++ b/runner/js/target_npm.go
@@ -1,8 +1,8 @@
package js
import (
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"os/exec"
"path/filepath"
)
diff --git a/runner/js/target_script.go b/runner/js/target_script.go
index 6ad213d..08310f0 100644
--- a/runner/js/target_script.go
+++ b/runner/js/target_script.go
@@ -1,10 +1,10 @@
package js
import (
- "github.com/ewy1/pik/describe"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/describe"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
+ "git.sr.ht/~ewy/pik/spool"
"os/exec"
"path/filepath"
)
diff --git a/runner/just/just.go b/runner/just/just.go
index b8f605b..5eb158a 100644
--- a/runner/just/just.go
+++ b/runner/just/just.go
@@ -2,9 +2,9 @@ package just
import (
"errors"
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"io/fs"
"os/exec"
"path/filepath"
diff --git a/runner/just/target.go b/runner/just/target.go
index 534185b..04ba8a2 100644
--- a/runner/just/target.go
+++ b/runner/just/target.go
@@ -1,8 +1,8 @@
package just
import (
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"os/exec"
)
diff --git a/runner/python/file.go b/runner/python/file.go
index b6a3f3f..ae22962 100644
--- a/runner/python/file.go
+++ b/runner/python/file.go
@@ -1,10 +1,10 @@
package python
import (
- "github.com/ewy1/pik/describe"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/describe"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
+ "git.sr.ht/~ewy/pik/spool"
"os/exec"
"path/filepath"
)
diff --git a/runner/python/indexer.go b/runner/python/indexer.go
index ff64fc8..2b3b347 100644
--- a/runner/python/indexer.go
+++ b/runner/python/indexer.go
@@ -1,7 +1,7 @@
package python
import (
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"github.com/pelletier/go-toml/v2"
"io/fs"
"os"
diff --git a/runner/python/proj.go b/runner/python/proj.go
index 5b02b58..351cbc8 100644
--- a/runner/python/proj.go
+++ b/runner/python/proj.go
@@ -1,8 +1,8 @@
package python
import (
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"os/exec"
"path/filepath"
)
diff --git a/runner/python/runner.go b/runner/python/runner.go
index 8d03f52..9318d67 100644
--- a/runner/python/runner.go
+++ b/runner/python/runner.go
@@ -2,9 +2,9 @@ package python
import (
"errors"
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"io/fs"
"os/exec"
"path/filepath"
diff --git a/runner/shell/hydrated.go b/runner/shell/hydrated.go
index 440d9cd..5aefab8 100644
--- a/runner/shell/hydrated.go
+++ b/runner/shell/hydrated.go
@@ -1,10 +1,10 @@
package shell
import (
- "github.com/ewy1/pik/describe"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/describe"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
+ "git.sr.ht/~ewy/pik/spool"
)
type Hydrated struct {
diff --git a/runner/shell/shell.go b/runner/shell/shell.go
index 8bef032..37ca433 100644
--- a/runner/shell/shell.go
+++ b/runner/shell/shell.go
@@ -3,11 +3,11 @@ package shell
import (
"bufio"
"errors"
- "github.com/ewy1/pik/identity"
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/paths"
- "github.com/ewy1/pik/runner"
- "github.com/ewy1/pik/spool"
+ "git.sr.ht/~ewy/pik/identity"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/paths"
+ "git.sr.ht/~ewy/pik/runner"
+ "git.sr.ht/~ewy/pik/spool"
"io/fs"
"os/exec"
"path/filepath"
diff --git a/runner/shell/target.go b/runner/shell/target.go
index d1262af..2b0816a 100644
--- a/runner/shell/target.go
+++ b/runner/shell/target.go
@@ -1,8 +1,8 @@
package shell
import (
- "github.com/ewy1/pik/model"
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/model"
+ "git.sr.ht/~ewy/pik/runner"
"os/exec"
)
diff --git a/runner/stub.go b/runner/stub.go
index 6d4eff4..8fef3d4 100644
--- a/runner/stub.go
+++ b/runner/stub.go
@@ -3,7 +3,7 @@
package runner
import (
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"os/exec"
)
diff --git a/search/search.go b/search/search.go
index e3e6d7a..d0d66eb 100644
--- a/search/search.go
+++ b/search/search.go
@@ -1,7 +1,7 @@
package search
import (
- "github.com/ewy1/pik/model"
+ "git.sr.ht/~ewy/pik/model"
"slices"
)
diff --git a/search/search_test.go b/search/search_test.go
index 1a630eb..bfeb11f 100644
--- a/search/search_test.go
+++ b/search/search_test.go
@@ -3,7 +3,7 @@
package search
import (
- "github.com/ewy1/pik/runner"
+ "git.sr.ht/~ewy/pik/runner"
"github.com/stretchr/testify/assert"
"testing"
)
diff --git a/spool/exit.go b/spool/exit.go
index efe9d4e..23cf9da 100644
--- a/spool/exit.go
+++ b/spool/exit.go
@@ -1,7 +1,7 @@
package spool
import (
- "github.com/ewy1/pik/paths"
+ "git.sr.ht/~ewy/pik/paths"
"os"
)
diff --git a/viewport/scroll.go b/viewport/scroll.go
index 8a109bd..e0f9aae 100644
--- a/viewport/scroll.go
+++ b/viewport/scroll.go
@@ -1,8 +1,8 @@
package viewport
import (
+ "git.sr.ht/~ewy/pik/menu/style"
"github.com/charmbracelet/lipgloss"
- "github.com/ewy1/pik/menu/style"
"strings"
)