I know that with Vim\'s substitution command you can specific a range of lines:
:12,24s/search/replace
I want to be able to specify a range
If you would like to search to the end of the file, use $:
:3,$s/pattern//gn
This will search from 3-d line to the end