Closed KadoBOT closed 2 years ago
@KadoBOT Can you show a link to document of the style
option in Neovim?
@KadoBOT Can you show a link to document of the
style
option in Neovim?
:h nvim_open_win()
:
• style: Configure the appearance of the window.
Currently only takes one non-empty value:
• "minimal" Nvim will display the window with
many UI options disabled. This is useful
when displaying a temporary float where the
text should not be edited. Disables
'number', 'relativenumber', 'cursorline',
'cursorcolumn', 'foldcolumn', 'spell' and
'list' options. 'signcolumn' is changed to
`auto` and 'colorcolumn' is cleared. The
end-of-buffer region is hidden by setting
`eob` flag of 'fillchars' to a space char,
and clearing the |EndOfBuffer| region in
'winhighlight'.
And I just noticed that border
is missing as well...
Can you resolve the prettier warning?
/Users/runner/work/1/s/packages/neovim/src/api/Neovim.ts
103:1 error Delete `··` prettier/prettier
✖ 1 problem (1 error, 0 warnings)
1 error and 0 warnings potentially fixable with the `--fix` option.
That's what I get from using the online editor! 😅 I'll clone the repo and add the other missing fields as well.
@rhysd I'm just not sure about the bufpos
field, and the string[]
in the border
. Are those valid types on nvim?
Yeah, I believe they are valid.
@billyvg @justinmk Can we make a new release?
@rhysd 4.10.1 published -- thoughts on moving to GitHub Actions? Can move add a publish workflow when we make a GitHub Release too.
thoughts on moving to GitHub Actions?
That would be nice idea though I'm not understanding how to manage npm credentials and 2FA on GHA.
thoughts on moving to GitHub Actions?
That would be nice idea though I'm not understanding how to manage npm credentials and 2FA on GHA.
You can add them under the repository settings (-> secrets). And they'll be available as env variables. Although, external PR's won't have access to those, for obvious reasons.
Add
style
to OpenWindowOptions