I have a shell script with the content
curl http://some-url.com -H "Content-Type: text/csv charset=UTF-8"
opened in vim. The cursor sits on the 's' in csv, and I want to replace text/csv by application/xml. How do I do that with the least number of key strokes? I tried "ciw", but that replaces only 'csv', not 'text/csv' Also "ci " (with a space in the end) doesn't work.