misskey client for vim.
- Browse Home / Local / Social / Global timeline.
- Post note.
Edit config file.
call misskey#config#open()
Write the following:
{
"misskey.io": {
"token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
"other.misskey.example.com": {
"token": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
Open timeline buffer:
call misskey#timeline#open("misskey.io", "home")
call misskey#timeline#open("misskey.io", "local")
call misskey#timeline#open("misskey.io", "social")
call misskey#timeline#open("misskey.io", "global")
Open post note:
let g:misskey#note#create#visibility = "public"
let g:misskey#note#create#localOnly = v:false
call misskey#note#create#open("misskey.io")
Post.
call misskey#note#create#submit()
" or :w