Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
revise defualt editor
Browse files Browse the repository at this point in the history
  • Loading branch information
ingbyr committed Dec 28, 2021
1 parent de681f6 commit c4c420b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions editor/unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
package editor

const (
Default = "vim"
DefaultArgs = "-n"
Default = "vim -n"
)
3 changes: 1 addition & 2 deletions editor/windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
package editor

const (
Default = "notepad"
DefaultArgs = ""
Default = "notepad"
)
2 changes: 2 additions & 0 deletions hfs/memfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ func TestMemFs_CreateDir(t *testing.T) {
}
}

printEntryTree(memFs)

var tests = []struct {
dir string
wanted []string
Expand Down

0 comments on commit c4c420b

Please sign in to comment.