I have output from static analyzer, that I parsed with Bash.
Now I want Vim to run on specified by analyzer line and add comment containing warning id and description.
I tried this,
vim $file +$line+'normal A'+'/* KW: $kwid desc: $desc */'
Where $file is the path to file, $line line number, $kwid and $desc are strings that describe what problem I'm working on for this case.