mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
Ditch relative imports, make this go get-able
This commit is contained in:
parent
14b5b5ff66
commit
713f87fc9a
|
@ -1,7 +1,7 @@
|
|||
package edit
|
||||
|
||||
import (
|
||||
"../parse"
|
||||
"github.com/xiaq/das/parse"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package edit
|
||||
|
||||
import (
|
||||
"../parse"
|
||||
"github.com/xiaq/das/parse"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
)
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
package edit
|
||||
|
||||
import (
|
||||
"../eval"
|
||||
"../parse"
|
||||
"../util"
|
||||
"./tty"
|
||||
"github.com/xiaq/das/eval"
|
||||
"github.com/xiaq/das/parse"
|
||||
"github.com/xiaq/das/util"
|
||||
"github.com/xiaq/das/edit/tty"
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package edit
|
||||
|
||||
import (
|
||||
"../eval"
|
||||
"../parse"
|
||||
"github.com/xiaq/das/eval"
|
||||
"github.com/xiaq/das/parse"
|
||||
)
|
||||
|
||||
// Pseudo-ItemType's used by the Highlighter. They are given negative values
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package edit
|
||||
|
||||
import (
|
||||
"../util"
|
||||
"github.com/xiaq/das/util"
|
||||
"bufio"
|
||||
"fmt"
|
||||
"time"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package edit
|
||||
|
||||
import (
|
||||
"../util"
|
||||
"./tty"
|
||||
"github.com/xiaq/das/util"
|
||||
"github.com/xiaq/das/edit/tty"
|
||||
"bytes"
|
||||
"fmt"
|
||||
"os"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package eval
|
||||
|
||||
import (
|
||||
"../parse"
|
||||
"../util"
|
||||
"github.com/xiaq/das/parse"
|
||||
"github.com/xiaq/das/util"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
package eval
|
||||
|
||||
import (
|
||||
"../parse"
|
||||
"../util"
|
||||
"github.com/xiaq/das/parse"
|
||||
"github.com/xiaq/das/util"
|
||||
"os"
|
||||
"fmt"
|
||||
"strconv"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package eval
|
||||
|
||||
import (
|
||||
"../parse"
|
||||
"github.com/xiaq/das/parse"
|
||||
"bytes"
|
||||
"fmt"
|
||||
"strconv"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"../edit"
|
||||
"../eval"
|
||||
"../parse"
|
||||
"../util"
|
||||
"github.com/xiaq/das/edit"
|
||||
"github.com/xiaq/das/eval"
|
||||
"github.com/xiaq/das/parse"
|
||||
"github.com/xiaq/das/util"
|
||||
"fmt"
|
||||
"os"
|
||||
"os/user"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
package parse
|
||||
|
||||
import (
|
||||
"../util"
|
||||
"github.com/xiaq/das/util"
|
||||
"fmt"
|
||||
"os"
|
||||
"strconv"
|
||||
|
|
Loading…
Reference in New Issue
Block a user