yuiseki
vscodeで使ってる拡張機能
2019-11-13 20:46:35 UTC
extension.ts 5 import fs = require('fs'); 6 7 // this method is called when vs code is activated 8 export function activate (context: vscode. ExtensionContext) { 9 10 11 12 13 14 15 C:\Users\Alessandro\Documents\GitHub\vscode-bookmarks 16 17 18 19 20 21 22 class Bookmark { } fsPath: string; bookmarks: number []; constructor (uri: vscode.Uri) { this.fsPath = uri.fsPath; this.bookmarks = []; } class Bookmarks { bookmarks: Bookmark []; 8 co