-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sixel対応端末での画像表示 #7
Comments
[参考]
↑以下のように変換する $ gosr foo.png > foo.drcs gif→連番png $ ffmpeg -i alisue.gif -vsync 0 alisue%03d.png ひとまずsixel周りの仕様を大まかに把握する |
↑:vim:の call setpos('.', [0, 5, 5, 0])
let s:foo = join(readfile('hoge.drcs'), "\n")
call echoraw("\x1b[10;10H" . s:foo) |
ターミナルで画像を表示する方法としてchafaというツールを使う方法もあって、 sixelとは違った方式なので、WindowsTerminalやtmuxに関わらず表示される。 vim上のメッセージ表示の上から画像を表示するのは厳しいかもだけど、dduのターミナルプレビューでスタンプのプレビューくらいはできそう |
https://github.com/gw31415/mstdn.vim ↑mastdonのvimクライアントをdenopsで実装してるやつ この中でsixelを使って画像表示する所を別プラグインとして切り出してくれてるから、これ使うと一旦は実装できるかも |
メッセージでの画像表示やスタンプ補完画面でのスタンプ表示をやってみる
The text was updated successfully, but these errors were encountered: