Replies: 1 comment
-
You might want to use some Vimscript for this!1 For example, you can change the first line to:23 let g:neovide_scale_factor = (g:neovide_scale_factor + 0.1) > 1.0 ? 1.0 : g:neovide_scale_factor + 0.1 If you add this to a keymap definition: ["n|<C-=>"] = map_cr("let g:neovide_scale_factor = (g:neovide_scale_factor + 0.1) > 1.0 ? 1.0 : g:neovide_scale_factor + 0.1")
:with_noremap()
:with_silent(), it should work nicely! It's been running smoothly for me. Footnotes
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Seems cannnot use <C-+> or to Zoom
any other plugin can do this or can config like neodie:
Beta Was this translation helpful? Give feedback.
All reactions