91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vscode extension插件開發簡介

發布時間:2021-02-22 12:29:45 來源:億速云 閱讀:462 作者:清風 欄目:開發技術

本文將為大家詳細介紹“vscode extension插件開發簡介”,內容步驟清晰詳細,細節處理妥當,而小編每天都會更新不同的知識點,希望這篇“vscode extension插件開發簡介”能夠給你意想不到的收獲,請大家跟著小編的思路慢慢深入,具體內容如下,一起去收獲新知識吧。

vscode有什么用

Visual Studio Code 是一個運行于 OS X,Windows和 Linux 之上的,針對于編寫現代 web 和云應用的跨平臺編輯器,它為開發者們提供了對多種編程語言的內置支持,并且正如 Microsoft 在Build 大會的 keynote 中所指出的,這款編輯器也會為這些語言都提供了豐富的代碼補全和導航功能。

官方文檔
https://code.visualstudio.com/docs

上面是vscode官方提供的extension開發幫助,按照上面的步驟基本上可以做簡單的demo事例

如下主要介紹下自己在開發中做的幾個簡單功能:

1. Snippet

感覺vscode的snippet功能真的很強大,只要編輯相應的json配置文件,在文檔編輯過程中的各種提示應有盡有,在vscode的market上,也可以找到各種后綴格式的文件的配置。

snippet的配置很簡單,只需要配置對應的json文件就可以了

 {
/*
   // Place your snippets for C++ here. Each snippet is defined under a snippet name and has a prefix, body and 
   // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
   // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
   // same ids are connected.
   // Example:
   "Print to console": {
    "prefix":"log", 
    "body":[
      "console.log('$1');", 
      "$2"
    ], 
    "description":"Log output to console"
  } 
*/
}

snippet可以通過兩種方式添加:

1.1 通過vscode->首選項-->用戶代碼段

通過這種方式等于是通過配置自己本地的代碼片段,而且只能在本機使用。

1.2 通過開發snippet的extension

對于開發snippet的extension很簡單,配置好vscode extension的工程結構,只需要在package.json文件中的contributes-->snippets即可,配置上自己寫的json文件或者添加從第三方獲取到的json文件即可。

 "contributes": {
  "snippets": [
      {
        "language": "cpp",
        "path": "./snippets/snippets.json"
      }
    ],
 }

通過這種方式,把插件打包發布以后,可以輕松的共享給自己的小伙伴們,對于snippet的擴展很方便。

2. registerCommand

在vscode的插件開發,最基礎的就應該算是command了,在功能命令,右鍵菜單,menu, keybindings等都和command相關,所以在做這些功能之前,首先需要自己注冊一個command進去。

// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
export function activate(context: vscode.ExtensionContext) {
  
  // Use the console to output diagnostic information (console.log) and errors (console.error)
  // This line of code will only be executed once when your extension is activated
  console.log('Congratulations, your extension "demoCmd" is now active!');
  // The command has been defined in the package.json file
  // Now provide the implementation of the command with registerCommand
  // The commandId parameter must match the command field in package.json
  let demoCmd= vscode.commands.registerCommand('extension.demoCmd', () => {
    // The code you place here will be executed every time your command is executed
  });
  context.subscriptions.push(demoCmd);
}

// this method is called when your extension is deactivated
export function deactivate() {
  
}

這個也是整個插件的入口,上例子中定義了一個extension.demoCmd的cmd,對于上面說的一些定制功能,都需要通過這個cmd在package.json中配置。
注:如下的命令和配置都是在package.json中的contributes屬性

2.1 注冊命令

注冊命令與其名稱,注意此處的command必須與上門代碼中的cmd名稱一致。

 "commands": [{
      "command": "extension.demoCmd",
      "title": "demoCmd"
    }],

注冊了這個命令,就可以通過vscode在F1彈出的窗口中輸入命令,找到自己剛剛注冊的cmd

vscode extension插件開發簡介

但是如果添加一個快捷鍵是不是會更方便呢?

2.2 command添加keybindings

"keybindings": [{
            "command": "extension.demoCmd",
            "key": "ctrl+shift+a",
            "mac": "ctrl+shift+a",
            "when": "editorTextFocus"
          }],

此處注冊一個ctrl+shift+a的快捷鍵調用我們注冊的cmd,添加了以后,可以通過快捷鍵試試效果,是不是比在F1中輸入命令找到對應的cmd方便多了。

2.3 command添加menu

注冊了快捷鍵,是方便了,但是對于很多用戶來說,有一個menu按鈕或者有一個右鍵菜單是不是更方便呢?

"menus": {
   "editor/context": [
    {
     "when": "resourceLangId == cpp",
     "command": "extension.demoCmd",
     "group": "navigation"
    }],
    "editor/title": [{
        "when": "resourceLangId == cpp",
        "command": "extension.demoCmd",
        "group": "navigation"
     }]

如上,提供了兩種方式添加menu,editor/context:鼠標右鍵菜單

vscode extension插件開發簡介

editor/title:菜單欄按鈕

vscode extension插件開發簡介

2.4 setting.json配置提示

剛才說了snippet文件內容提示,但是對于插件開發來說,很有可能需要用戶配置一些本機的環境或者參數之類的變量,對于這個名稱格式的提示也是很有必要的,省的用戶配置錯誤。

"configuration": {
      "type": "object",
      "title": "demoCmd configuration",
      "properties": {
        "demoCmd.encoding": {
          "type": "string",
          "default": "utf-8",
          "description": "default file encoding"
        }
      }
    },

配置了這個,在文件-->首選項-->設置的編輯頁面中,就會提示我們剛才配置的屬性。此處對于類型,默認值,類型校驗都很有作用,可以方便用戶配置參數并且減少輸入錯誤率。

 vscode extension插件開發簡介

3. 一些高階用法

在2. registerCommand中的activate中我們除了registerCommand還可以注冊一些其他的事件.

如下給一個CompletionItemProvider的例子

3.1 CompletionItemProvider

vscode除了最基礎的snippet提示,還有另外一種通過CompletionItemProvider實現的提示功能。

// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
export function activate(context: vscode.ExtensionContext) {

   let demoProvider = new demoProvider();
   let cppPv = vscode.languages.registerCompletionItemProvider("cpp", demoProvider);  
   context.subscriptions.push(cppPv);
}
// this method is called when your extension is deactivated
export function deactivate() {

}
export class demoProvider implements vscode.CompletionItemProvider{
    public provideCompletionItems(document: vscode.TextDocument, position: vscode.Position, token: vscode.CancellationToken): vscode.CompletionItem[]{

      var completionItems = [];
      var completionItem = new vscode.CompletionItem("aaa");
      completionItem.kind = vscode.CompletionItemKind.Snippet;
      completionItem.detail = "aaa";
      completionItem.filterText = "bbbb";
      completionItem.insertText = new vscode.SnippetString("aaaa$1bbbb$2cccc");
      completionItems.push(completionItem);
      return completionItems;
    }
    public resolveCompletionItem(item: vscode.CompletionItem, token: vscode.CancellationToken): any{
      return item;
    }
    dispose(){

    }
  }

類似的還有CodeActionsProvider,HoverProvider,CodeLensProvider等。

3.2 insertSnippet

在vscode的新版本中,提供了一個insertSnippet方法,用于插入snippet類型格式內容,通過這種方法插入的可以使用snippet的格式,例如$1這種tab跳轉等。

private editSnippet(text : string ) {
      let editor = vscode.window.activeTextEditor;
      let selection : vscode.Selection = editor.selection;
      let insertPosition = new vscode.Position(selection.active.line, 0);
      editor.insertSnippet(new vscode.SnippetString(text), insertPosition);
    }

注意,在vscode低版本中,可能不存在這個功能。

3.3 OutputChannel

OutputChannel主要用于打印輸出信息到vscode的輸出控制臺。

let out:vscode.OutputChannel = vscode.window.createOutputChannel("iAuto3 RunScript");
out.show();
out.appendLine("deom");

類似的還有StatusBarItem,Terminal,TextEditorDecorationType等。

4. 打包發布

這個就參考官方的發布方法,再次提示一點,以為如果是公司內部開發,有些東西是不能對外提交發布的,所以可以考慮只打包,通過本地安裝

vsce package

自己打包以后,把打包完成的*.vsix內網發布出去,可以讓同事們通過 <b>從VSIX安裝</b>

小結:

隨著web發展,vscode使用范圍在擴大,從extensions market市場上也可以發現,各種功能的插件基本都很齊全,特別是snippet這一塊,cpp, ruby,react,angular等都很比較齊全,可以很大的提高代碼編碼速度,同時還可以通過各種提示校驗等,提高代碼質量。

vscode extension插件開發簡介

同時vscode extensions 開發門檻不高,對于公司內部用于規范代碼格式,提高代碼質量,降低代碼學習門檻都是非常有用的。

如果你能讀到這里,小編希望你對“vscode extension插件開發簡介”這一關鍵問題有了從實踐層面最深刻的體會,具體使用情況還需要大家自己動手實踐使用過才能領會,如果想閱讀更多相關內容的文章,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

登封市| 西充县| 晋宁县| 扎囊县| 恩施市| 商城县| 信阳市| 赤壁市| 宜兰县| 富民县| 宁都县| 绵竹市| 杭州市| 罗平县| 正蓝旗| 青川县| 台南县| 丹阳市| 三亚市| 永康市| 四会市| 凤冈县| 库尔勒市| 容城县| 新沂市| 武平县| 庆阳市| 通化市| 清流县| 栾城县| 洛浦县| 永川市| 临泉县| 前郭尔| 古丈县| 六安市| 西安市| 舒兰市| 鹤庆县| 正镶白旗| 衡山县|