We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad2aef6 commit 921bc26Copy full SHA for 921bc26
debugger/terminal/colorterm/colorterm_windows.go
@@ -23,6 +23,7 @@ import (
23
"fmt"
24
25
"github.com/jetsetilly/gopher2600/debugger/terminal"
26
+ "github.com/jetsetilly/gopher2600/debugger/terminal/commandline"
27
)
28
29
// ColorTerminal implements debugger UI interface with a basic ANSI terminal.
@@ -40,7 +41,7 @@ func (ct *ColorTerminal) CleanUp() {
40
41
42
// RegisterTabCompletion adds an implementation of TabCompletion to the
43
// ColorTerminal.
-func (ct *ColorTerminal) RegisterTabCompletion(tc terminal.TabCompletion) {
44
+func (ct *ColorTerminal) RegisterTabCompletion(tc *commandline.TabCompletion) {
45
}
46
47
// IsInteractive satisfies the terminal.Input interface.
0 commit comments