summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-28 16:21:05 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-10-28 16:21:05 +0100
commit215af6916738fffc1d88d237b91d2f5746deb07f (patch)
tree83329aac32ceb8fd67e7cb1a5778b968977e3d17
parent477a373f88c0fb91847c05c78006a781ab837b47 (diff)
nvim: Fix <LocalLeader>c bindings
-rw-r--r--.config/nvim/after/ftplugin/nroff.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/nvim/after/ftplugin/nroff.vim b/.config/nvim/after/ftplugin/nroff.vim
index 62eca08..2f4c7c7 100644
--- a/.config/nvim/after/ftplugin/nroff.vim
+++ b/.config/nvim/after/ftplugin/nroff.vim
@@ -1,4 +1,4 @@
setlocal textwidth=73
-nnoremap <LocalLeader>c :w !wc -w<CR>
-xnoremap <LocalLeader>c :'<,'>w !deroff \| wc -w<CR>
+nnoremap <LocalLeader>c :w !deroff \| wc -w<CR>
+xnoremap <LocalLeader>c :w !deroff \| wc -w<CR>