# 参数自动补全插件 **Repository Path**: fishhhqi/autocomplete-args ## Basic Information - **Project Name**: 参数自动补全插件 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-29 - **Last Updated**: 2024-09-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 使用方法 Ctrl + Shift + P 执行`Select Log File For Arguments`,选择日志文件。之后在sh文件就有自动补全和类型提示。 很多时候我们编写脚本,光标是处在一个字符串内。所以为了让插件生效,我们还需要在`settings.json`中加入 ``` "editor.quickSuggestions": { "other": true, // you need this if you want ctrl+space to work elsewhere. "strings": true // this is your relevant option } ```