when complete function, not want complete the parameter type
xiangp126 opened this issue · 0 comments
xiangp126 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?
my function is util_rbtree_node_t* util_rbtree_lookup(util_rbtree_t *rbtree, util_key_t key);
but it completes like this:
util_rbtree_lookup(*rbtree, key);
however I did not want the * before rbtree, I want below
util_rbtree_lookup(rbtree, key);
how can I do it ? thanks
- What did you expect to happend?
- What actually happened?