mirror of https://github.com/liamg/aminal.git
Merge pull request #1 from mikkeloscar/change-import
Change import to github.com
This commit is contained in:
commit
f05b2a8d8f
|
@ -5,13 +5,13 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gitlab.com/liamg/raft/glfont"
|
"github.com/liamg/raft/glfont"
|
||||||
|
|
||||||
"github.com/go-gl/gl/all-core/gl"
|
"github.com/go-gl/gl/all-core/gl"
|
||||||
"github.com/go-gl/glfw/v3.2/glfw"
|
"github.com/go-gl/glfw/v3.2/glfw"
|
||||||
"gitlab.com/liamg/raft/buffer"
|
"github.com/liamg/raft/buffer"
|
||||||
"gitlab.com/liamg/raft/config"
|
"github.com/liamg/raft/config"
|
||||||
"gitlab.com/liamg/raft/terminal"
|
"github.com/liamg/raft/terminal"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
|
|
||||||
"github.com/go-gl/glfw/v3.2/glfw"
|
"github.com/go-gl/glfw/v3.2/glfw"
|
||||||
"gitlab.com/liamg/raft/terminal"
|
"github.com/liamg/raft/terminal"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (gui *GUI) mouseButtonCallback(w *glfw.Window, button glfw.MouseButton, action glfw.Action, mod glfw.ModifierKey) {
|
func (gui *GUI) mouseButtonCallback(w *glfw.Window, button glfw.MouseButton, action glfw.Action, mod glfw.ModifierKey) {
|
||||||
|
|
|
@ -4,9 +4,9 @@ import (
|
||||||
"math"
|
"math"
|
||||||
|
|
||||||
"github.com/go-gl/gl/all-core/gl"
|
"github.com/go-gl/gl/all-core/gl"
|
||||||
"gitlab.com/liamg/raft/buffer"
|
"github.com/liamg/raft/buffer"
|
||||||
"gitlab.com/liamg/raft/config"
|
"github.com/liamg/raft/config"
|
||||||
"gitlab.com/liamg/raft/glfont"
|
"github.com/liamg/raft/glfont"
|
||||||
)
|
)
|
||||||
|
|
||||||
type OpenGLRenderer struct {
|
type OpenGLRenderer struct {
|
||||||
|
|
6
main.go
6
main.go
|
@ -10,9 +10,9 @@ import (
|
||||||
|
|
||||||
"github.com/kr/pty"
|
"github.com/kr/pty"
|
||||||
"github.com/riywo/loginshell"
|
"github.com/riywo/loginshell"
|
||||||
"gitlab.com/liamg/raft/config"
|
"github.com/liamg/raft/config"
|
||||||
"gitlab.com/liamg/raft/gui"
|
"github.com/liamg/raft/gui"
|
||||||
"gitlab.com/liamg/raft/terminal"
|
"github.com/liamg/raft/terminal"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ package terminal
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"gitlab.com/liamg/raft/buffer"
|
"github.com/liamg/raft/buffer"
|
||||||
)
|
)
|
||||||
|
|
||||||
func sgrSequenceHandler(params []string, intermediate string, terminal *Terminal) error {
|
func sgrSequenceHandler(params []string, intermediate string, terminal *Terminal) error {
|
||||||
|
|
|
@ -10,8 +10,8 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
"gitlab.com/liamg/raft/buffer"
|
"github.com/liamg/raft/buffer"
|
||||||
"gitlab.com/liamg/raft/config"
|
"github.com/liamg/raft/config"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue