diff options
author | Josh Rahm <rahm@google.com> | 2022-08-23 12:32:59 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2022-08-23 12:32:59 -0600 |
commit | eabc175e8d7649f0d3308e8bec57f876107b8335 (patch) | |
tree | 774bbaf3fd9823e980664bd11f93c98576d1e032 /plugin/command.vim | |
parent | 5e5cc5189d53443e82100d85926e5856e6506866 (diff) | |
download | fieldmarshal.vim-eabc175e8d7649f0d3308e8bec57f876107b8335.tar.gz fieldmarshal.vim-eabc175e8d7649f0d3308e8bec57f876107b8335.tar.bz2 fieldmarshal.vim-eabc175e8d7649f0d3308e8bec57f876107b8335.zip |
Better handling for substitute and command.
Diffstat (limited to 'plugin/command.vim')
-rw-r--r-- | plugin/command.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/command.vim b/plugin/command.vim index 51633b5..db18cf3 100644 --- a/plugin/command.vim +++ b/plugin/command.vim @@ -10,5 +10,5 @@ function! s:do_command_around(str) abort let [_, lnum0, _, _] = getpos("'[") let [_, lnum1, _, _] = getpos("']") - call feedkeys(printf(":%d,%d ", lnum0, lnum1)) + call feedkeys(printf(":silent! %d,%d ", lnum0, lnum1)) endfunction |