m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

[ncurses6] Support italics

This commit is contained in:
Junegunn Choi
2016-11-24 00:13:10 +09:00
parent af31088481
commit 182a6d99fd
3 changed files with 10 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ import (
)
type ColorPair int16
type Attr C.int
type Attr C.uint
type WindowImpl C.WINDOW
const (
@@ -39,6 +39,7 @@ const (
Blink = C.A_BLINK
Reverse = C.A_REVERSE
Underline = C.A_UNDERLINE
Italic = C.A_VERTICAL << 1 // FIXME
)
const (

View File

@@ -48,6 +48,7 @@ const (
Blink = Attr(tcell.AttrBlink)
Reverse = Attr(tcell.AttrReverse)
Underline = Attr(tcell.AttrUnderline)
Italic = Attr(tcell.AttrNone) // Not supported
)
const (