It will selection function name when use `->` to call the function.
tenfyzhong opened this issue · 0 comments
tenfyzhong commented
Issue Prelude
- Category
- Question
- Bug
- Suggestion
- OS
- Linux
- macOS
- Windows
- Etc.
- Vim
- Vim
- Neovim
- Language
- C
- C++
- go
- python
- rust
- javascript
- typescript
- erlang
Completion Engine and Commit SHA
Minimal Configuration
Issue Details
- What did you do?
class MyClass
{
public:
void func(int n0, int n1, int n2)
{
}
};
int main(int argc, char *argv[])
{
MyClass *o = new MyClass;
o->func(n0, n1, n2)
return 0;
}
call goto previous paraneter when on n0
- What did you expect to happend?
stop select
- What actually happened?
selected
func