mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-27 10:57:12 +09:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d845eefe3 | ||
|
|
d8576d0fe6 |
@@ -2,6 +2,7 @@ package display
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
"unicode"
|
||||
|
||||
runewidth "github.com/mattn/go-runewidth"
|
||||
"github.com/zyedidia/micro/v2/internal/buffer"
|
||||
@@ -624,6 +625,11 @@ func (w *BufWindow) displayBuffer() {
|
||||
width = util.Min(ts, maxWidth-vloc.X)
|
||||
totalwidth += ts
|
||||
default:
|
||||
if unicode.IsUpper(r) {
|
||||
width = 2
|
||||
totalwidth += 2
|
||||
break
|
||||
}
|
||||
width = runewidth.RuneWidth(r)
|
||||
totalwidth += width
|
||||
}
|
||||
@@ -658,6 +664,13 @@ func (w *BufWindow) displayBuffer() {
|
||||
}
|
||||
|
||||
for _, r := range word {
|
||||
if unicode.IsUpper(r.r) {
|
||||
draw('~', nil, r.style, true, true)
|
||||
draw(r.r, r.combc, r.style, true, false)
|
||||
bloc.X++
|
||||
continue
|
||||
}
|
||||
|
||||
draw(r.r, r.combc, r.style, true, true)
|
||||
|
||||
// Draw any extra characters either spaces for tabs or @ for incomplete wide runes
|
||||
|
||||
Reference in New Issue
Block a user