如何关闭自动补全函数时,参数后面的类型提示? #897
Unanswered
nickynickyhard
asked this question in
Q&A
Replies: 1 comment 1 reply
-
你可以开个issue |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
在补全函数的时候,现在会把参数的类型给默认带上。
比如这样:
table.insert(list: table, pos: number, value: any)
这样的话,一旦由于某些原因丢失了焦点,再聚焦回来的话,要改某个参数就稍微有一丢丢麻烦,尤其是参数多的情况下
有没有哪个设置可以让自动补全仅仅补全参数,不包含类型,像这样:
table.insert(list, pos, value)
这样即便丢失焦点,再双击某个参数就可以直接选择修改了,而不用鼠标拖拉
我尝试了Completion的相关设置,但是好像没有哪个能解决这个问题,特来请教,谢谢
Beta Was this translation helpful? Give feedback.
All reactions