仅显示文件中的可用导入

时间:2018-04-16 11:16:02

标签: visual-studio-code

我最近从webstorm切换到了vscode,我正在努力为我的需求进行设置。

现在我想知道是否有任何扩展/设置只显示导入文件中的可用导入。

以下是一个例子:

import { InternalDataObject } from 'internal-node-module'
import actionTypes from './pay-structure.action-types'

const { GET_JOB_STAMP } = actionTypes

export {
  getMissionFees,
}

const getMissionFees = () => ({
  type: GET_JOB_STAMP,
  promise: InternalDataObject.payStructure.getJobFeeStamp,
})

enter image description here 当我在括号中按ctrl + space时,我可以看到数以千计的选项,但我只想看到一个:getMissionFees

提前致谢!

1 个答案:

答案 0 :(得分:1)

有一个设置:

"editor.snippetSuggestions": "none"

它会控制是否显示其他建议的片段以及它们的排序方式。可能的值:top,bottom,inline,none。