Make <C-f> silent
- Previously I didn't give <C-f> silent, so redraws were printed in the command
window. That is now fixed
diff --git a/modules/neovim/binds/binds.vim b/modules/neovim/binds/binds.vim
index 6dd3dfb..a4816d8 100644
--- a/modules/neovim/binds/binds.vim
+++ b/modules/neovim/binds/binds.vim
@@ -68,6 +68,6 @@
let g:camelcasemotion_key = '<leader>m'
-nnoremap <nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>:redraw!<CR>"
+nnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>:redraw!<CR>"
nnoremap <nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
nnoremap <silent> <C-d> <C-d>:redraw!<CR>