Sometimes we have to create a copy of the current working file, just for trying out some new thing or feature.
Of course, version control systems were made for this solving this problem.
But, let's say you don't want to use version control, so the other option is to duplicate the file, rename it either by changing the filename or the extension.
This task will take some time, but in vim, you can use the command :w %.bak
to create a version of the current file with yourfilename.extension.bak
in the same directory.
:w %.bak
:w
: Write file to disk%
: Get current file name.bak
: Arbitrary extension name for the file