robotframework-lsp icon indicating copy to clipboard operation
robotframework-lsp copied to clipboard

Avoid multiple matching keywords when using kw with embedded arguments

Open kvo-harmoney opened this issue 2 years ago • 0 comments

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}

kvo-harmoney avatar Mar 28 '23 13:03 kvo-harmoney