vendor: update liner dependency (#2700)

This change update liner to the latest release that adds support to
delete the next and the previous word with Alt-d and Alt-BackSpace
plus a small amount of fixes.
This commit is contained in:
Davide Masserut
2021-09-23 06:15:02 +02:00
committed by GitHub
parent a3897eafa7
commit 9f8b352a98
21 changed files with 1596 additions and 117 deletions

8
vendor/github.com/mattn/go-runewidth/runewidth_js.go generated vendored Normal file
View File

@ -0,0 +1,8 @@
// +build js
package runewidth
func IsEastAsian() bool {
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
return false
}