andriyko / sublime-robot-framework-assistant

Robot Framework plugin for Sublime Text3
MIT License
110 stars 43 forks source link

Arguments with two default values are not completed correctly #173

Closed aaltat closed 7 years ago

aaltat commented 7 years ago

When I have this keyword

| Keyword |
| | [Arguments] | ${arg1}=${True} | | ${arg2}=${False} |
...

Then keyword is completed like this

| Keyword | arg1}== |

But I did expect to see this:

| Keyword | arg1 | arg2 |