a detail you probably didn't know: nowhere in any #curl documentation do we use the word "very". It is a banned word enforced by a CI check. This rule encourages us to rewrite and instead use more appropriate words. Makes us write better English.
@sharlatan @bagder I have a list in my .vimrc:
highlight badWords ctermbg=red ctermfg=white
fun! HiBadWords()
match badWords /\c\<\(obviously\|basically\|simply\|of\scourse\|clearly\|just\|everyone\sknows\|however\|so,\|easy\|PHP\sUnit\)\>/
endfun
autocmd InsertEnter *.txt call HiBadWords()
autocmd InsertLeave *.txt call HiBadWords()