The following command will convert(It is a string substitute regex) the first character to uppercase
`:%s/^./\u&/g` will replace first char in all the lines
`:1,4s/^./\u&/g`
This command will replace line starting from 1 to 4 (`1,4`) change the line range in the command.