We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm not sure if its a bug or I'm doing something wrong, but I have tried
<dom-module id="nyaovim-app"> <template> <style> /* CSS configurations here */ </style> <!-- Component tags here --> <neovim-editor id="nyaovim-editor" argv$="[[argv]]" font-size="14" font="Fura Mono for Powerline Plus Nerd File Types,monospace"></neovim-editor> </template> </dom-module> <script> const neovim_element = document.getElementById('neovim'); neovim_element.editor.blink_cursor = false; </script>
and
<dom-module id="nyaovim-app"> <template> <style> /* CSS configurations here */ </style> <!-- Component tags here --> <neovim-editor id="nyaovim-editor" argv$="[[argv]]" font-size="14" blink-cursor="false" font="Fura Mono for Powerline Plus Nerd File Types,monospace"></neovim-editor> </template> </dom-module>
but the cursor doesn't stop blinking in normal mode.
The text was updated successfully, but these errors were encountered:
Hmm, blink-cursor="false" should stop blinking cursor. I need to investigate.
blink-cursor="false"
Sorry, something went wrong.
@rhysd Thanks, and just to clarify, I am referring to the cursor blinking in normal mode.
normal mode
9a2b528
Please use no-blink-cursor attribute instead as below:
no-blink-cursor
<neovim-editor id="nyaovim-editor" argv$="[[argv]]" font-size="14" no-blink-cursor font="Fura Mono for Powerline Plus Nerd File Types,monospace"></neovim-editor>
I renamed the attribute because HTML element's attribute can't have default true value.
true
Polymer/polymer#1812
I'll ship this fix in v0.7.0.
No branches or pull requests
I'm not sure if its a bug or I'm doing something wrong, but I have tried
and
but the cursor doesn't stop blinking in normal mode.
The text was updated successfully, but these errors were encountered: