:183,200:retab!
:%s/\s\+$//
or, because the substitution text can be omitted if blank:
:%s/\s\+$
// vim: noai:ts=4:sw=4
-or-
/* vim: noai:ts=4:sw=4
*/
-or-
/* vim: set noai ts=4 sw=4: */
-or-
/* vim: set fdm=expr fde=getline(v\:lnum)=~'{'?'>1'\:'1': */
Put the cursor anywhere inside a word and press *
or encapsulate your search term in \<
and \>
.
To add a bookmark in a vim file use the m character plus a character in the range (a,z) (for local files) or (A-Z) (global). Eg ma
will create the mark a
in the current file. To jump to mark a, use `a (jump to line+column) or use 'a (jump to the beginning of the line).
:ia <short> <long>