summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-01-24 13:26:33 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-01-24 13:26:33 +0900
commit448132c46c172169af22583403993f4505727ba5 (patch)
treebf18469a03309161067c5117a99ae821da0e2d1e /src
parent1476fc7f3bff575ab6adda3d53b7e03e282d3119 (diff)
Fix error when --query contains wide-length characters
Diffstat (limited to 'src')
-rw-r--r--src/terminal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal.go b/src/terminal.go
index e9de6868..cfed1a0e 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -86,7 +86,7 @@ func NewTerminal(opts *Options, eventBox *util.EventBox) *Terminal {
prompt: opts.Prompt,
tac: opts.Sort == 0,
reverse: opts.Reverse,
- cx: displayWidth(input),
+ cx: len(input),
cy: 0,
offset: 0,
yanked: []rune{},