File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3- ## [ 2.0.0] - 最新
3+ ## [ 2.0.0]
44### Added
55- 🚀 ** 全新升级为原生基于 Rust (NAPI-rs) 引擎底层架构** 。零依赖、完全免安装,开箱即用。彻底抛弃了对环境中原生 ` trash-cli ` python 包的强依赖。
66- ** 优势** :跨环境免依赖(内置二进制)、绝对安全无 Shell 调用、极致性能、能基于文件原路径(Original Parent Path)安全隔离多工作区操作。
Original file line number Diff line number Diff line change 1616
1717## 如何使用
18181 . 直接在 VSCode Marketplace 搜索 ` trash4WSL-in-vscode ` 并安装插件。
19- 2 . 在左侧资源管理器中选中你想清理的文件(支持多选),右键选择 ` 丢入回收站 (Trash) ` ,或者直接施放快捷键 ` delete ` 即可删除。
19+ 2 . 在左侧资源管理器中选中你想清理的文件(支持多选),右键选择 ` 丢入回收站 (Trash It ) ` ,或者直接施放快捷键 ` delete ` 即可删除。
20203 . ` ctrl+shift+p ` 执行命令或使用快捷键 ` ctrl+shift+delete ` ,将在主编辑区打开宏伟的「工作区回收站」详情面板,进行相关后悔药操作。
2121
2222> 温馨提示:其底层标准严格遵守 FreeDesktop Trash 规范体系,所以你在插件内删除的数据、都会无缝与系统桌面默认回收站生态共存(存放路径通常为:` ~/.local/share/Trash/ ` )。
Original file line number Diff line number Diff line change 11{
2- "version" : " 2.0.0 " ,
2+ "version" : " 2.0.1 " ,
33 "contributes" : {
44 "commands" : [
55 {
66 "command" : " trash4wsl-in-vscode.trashPutViaContextMenu" ,
7- "title" : " 丢入回收站"
7+ "title" : " 丢入回收站(Trash It) "
88 },
99 {
1010 "command" : " trash4wsl-in-vscode.trashPutViaShortcut" ,
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export class TrashPalette {
5050 const quickPick = vscode . window . createQuickPick < TrashItem2Display > ( ) ;
5151 quickPick . canSelectMany = false ;
5252 quickPick . onDidHide ( ( ) => quickPick . dispose ( ) ) ;
53- quickPick . placeholder = "输入关键词实时搜索回收站内容..." ;
53+ quickPick . placeholder = "输入关键词实时搜索回收站内容...(input keywords to filter trash items...) " ;
5454 quickPick . canSelectMany = false ;
5555 if ( IS_DEBUG ) {
5656 quickPick . ignoreFocusOut = true ;
You can’t perform that action at this time.
0 commit comments