macvim - Vim not showing messages for less than 3 occurrences substitutions -


lets say

text1 has 4 lines

1 2 1 1 after :%s/1/a/g, vim give message says 3 substitutions on 3 lines

text2 has 3 lines

1 2 1

:%s/1/a/g there no messages showing.

i typed ":messages" nothing in history either, wonder if there's way tell vim give message no matter number of occurrences. thanks.

btw, here's vimrc

update

like christian brabandt said here

by adding set report=0 vimrc fixed issue.

this controlled 'report' option. set zero, if want message.


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -