The command
c()<Esc>P
Explanation
If you want to put the word under the cursor in to brackets this is viwc()<Esc>P
.
viw
will v
isually select all charactrs i
n a w
ord.
c()
will c
change the selection and drops you into insert mode, where you type the literal characters (
)
. Also, c
automatically copies the original content to your yank
buffer (clip board).
With <Esc>P
you return Esc
back from insert to normal mode and P
aste the previous content.