robotframework-lsp
robotframework-lsp copied to clipboard
Avoid multiple matching keywords when using kw with embedded arguments
We are making use of keywords with embedded arguments. Example :
myResourceFile.Do Something With ${thisElement}
LSP can properly detect this in PyCharm IDE ( click-through, ... ), which is nice.
However, additional keywords starting with the same "keyword notation" are identified as multiple matching keywords detected. Any way to make the LSP doing more stronger/better matching ?
Example :
myResourceFile.Do Something With ${thisElement} And Close Page
In the above case LSP should ideally know that myResourceFile.Do Something With ${thisElement} And Close Page is NOT the same keyword as myResourceFile.Do Something With ${thisElement}