mtrubs / intellibot

IntelliJ/PyCharm plugin for Robot Automation Framework
https://github.com/millennialmedia/intellibot/wiki
MIT License
159 stars 109 forks source link

Gerkin is not highlighted when a result is returned #218

Open antechrestos opened 5 years ago

antechrestos commented 5 years ago

Hi,

Thank you for your great work. I encountered what may be an issue.

Having the following keyword

*** Keywords ***
Do Something With A ${parameter}
    Log To Console      ${parameter}
    ${result}=     Any Keyword
    [Return]    ${result}

*** Test Cases ***
My Test:
    ${init_result}=     Given Do Something With A something
...

The plugin fails to see Given Do Something With A something as the invocation of Do Something With A keyword.

Thanks