How to copy/yank only the current word which has only alphanumeric characters in Vim

copy, unix, vim

Solution

yiw

does what you seem to want with the sample provided. It's a very basic command.

Problem

Suppose a file has the text such as ``` Natural Natural8Language ``` I want the whole word to be yanked/copied with easy key shortcuts

Original source

Related problems