diff options
author | Teddy Wing | 2019-12-06 18:52:42 +0100 |
---|---|---|
committer | Teddy Wing | 2019-12-09 20:54:23 +0100 |
commit | 648f8e788c6a49c32e6b1cf9c04c8b6665709d8d (patch) | |
tree | 351a0afbc543c4809e6c0a3abf4d0212a0a0015b /bundle/git-shortcuts/ftplugin | |
parent | cf21af4a621d12c010f57df1d057d095c4e87a33 (diff) | |
download | dotvim-648f8e788c6a49c32e6b1cf9c04c8b6665709d8d.tar.bz2 |
git-shortcuts: Silence mappings
The printed commands were distracting.
Diffstat (limited to 'bundle/git-shortcuts/ftplugin')
-rw-r--r-- | bundle/git-shortcuts/ftplugin/git/git_shortcuts.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bundle/git-shortcuts/ftplugin/git/git_shortcuts.vim b/bundle/git-shortcuts/ftplugin/git/git_shortcuts.vim index f57db66..0b23ce1 100644 --- a/bundle/git-shortcuts/ftplugin/git/git_shortcuts.vim +++ b/bundle/git-shortcuts/ftplugin/git/git_shortcuts.vim @@ -20,8 +20,8 @@ if !hasmapto('<Plug>GitShortcutsCommitForward') let b:undo_ftplugin .= '| ounmap <buffer> ]]' endif -nnoremap <buffer> <Plug>GitShortcutsCommitBackward :call git_shortcuts#CommitBackward()<CR> -nnoremap <buffer> <Plug>GitShortcutsCommitForward :call git_shortcuts#CommitForward()<CR> +nnoremap <silent> <buffer> <Plug>GitShortcutsCommitBackward :call git_shortcuts#CommitBackward()<CR> +nnoremap <silent> <buffer> <Plug>GitShortcutsCommitForward :call git_shortcuts#CommitForward()<CR> -onoremap <buffer> <Plug>GitShortcutsCommitBackward :call git_shortcuts#CommitBackward()<CR> -onoremap <buffer> <Plug>GitShortcutsCommitForward :call git_shortcuts#CommitForward()<CR> +onoremap <silent> <buffer> <Plug>GitShortcutsCommitBackward :call git_shortcuts#CommitBackward()<CR> +onoremap <silent> <buffer> <Plug>GitShortcutsCommitForward :call git_shortcuts#CommitForward()<CR> |