vscode中复制文件名
https://stackoverflow.com/questions/57600269/visual-studio-code-how-to-copy-the-file-name
参考使用其中的快捷键操作(不用安装插件)。
Ctrl+Shift+E
to open and focus the Explorer pane.
The current file will be selected automatically by default.F2
to start renaming the file.
This will select the file name without file extension.- (optional)
Ctrl+A
to include the file extension in the selection. Ctrl+C t
o copy.Escape
to abort renaming (or just click anywhere).
当然这个流程还是有点复杂,不如鼠标右键一个拷贝文件名(理想,无实现),或者安装Copy file name插件,用一个快捷键处理,Ctrl+Alt+E
。