例如有两个函数 f1 和 f2
def f1(download_playlist):
pass
def f2(download_playlist):
print('download_playlist')
期望在输入 f1 之后 f2 里面的两个 download_playlist 只要输入前几个字母
在快速建议列表里面就会有 download_playlist
这样不用每次都从头到尾输一遍
这个设置不起作用
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.suggest.snippetsPreventQuickSuggestions": false,
1
dayzdj OP 问题已解决 需要添加下面的设置
```json "[python]": { "editor.wordBasedSuggestions": true, }, ``` |