有没有办法让 WebStorm 完成整行?
Is there a way to have WebStorm complete a whole line?
有没有办法让 WebStorm 完成整行?
我不是在寻找任何聪明的东西,只是像 vim 的 i_CTRL-X_CTRL-L
这对于文件顶部的重复导入语句会派上用场:
import Rea
可以完成到import React from 'react';
在一个项目的其他文件中显示多次
基于their documentation,IntelliJ 仅支持以下自动完成代码场景:
- Basic code completion 在 ⌃Space.
- Type completion ⌃⇧Space.
- Completing punctuation 于 ⏎。
- Completing statements 智能⏎.
- Completing paths in the Select Path dialog.
- Expanding words 与 ⌥/.
- Negating expressions 带感叹号。
- 有关使用 suggestion lists 的各种提示和技巧出现在调用代码完成时。
有没有办法让 WebStorm 完成整行?
我不是在寻找任何聪明的东西,只是像 vim 的 i_CTRL-X_CTRL-L
这对于文件顶部的重复导入语句会派上用场:
import Rea
可以完成到import React from 'react';
在一个项目的其他文件中显示多次
基于their documentation,IntelliJ 仅支持以下自动完成代码场景:
- Basic code completion 在 ⌃Space.
- Type completion ⌃⇧Space.
- Completing punctuation 于 ⏎。
- Completing statements 智能⏎.
- Completing paths in the Select Path dialog.
- Expanding words 与 ⌥/.
- Negating expressions 带感叹号。
- 有关使用 suggestion lists 的各种提示和技巧出现在调用代码完成时。