-
Notifications
You must be signed in to change notification settings - Fork 5
/
extension.js
81 lines (61 loc) · 2.03 KB
/
extension.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
'use strict'
const { commands, window, workspace, env } = require('vscode')
exports.activate = ({ subscriptions }) => {
const disposable = commands.registerCommand('snippet-generator.generate-snippet', async () => {
const editor = window.activeTextEditor
if (!editor) {
return window.showErrorMessage('No active text editor')
}
const selection = editor.document.getText(editor.selection)
if (!selection.length) {
return window.showErrorMessage('No selected text')
}
const name = await window.showInputBox({
placeHolder: 'Please enter name (required)',
validateInput: input => (input ? '' : 'Name is required'),
})
if (name === undefined) {
return
}
const scope = await window.showInputBox({
placeHolder: 'Please enter scope (optional)',
})
if (scope === undefined) {
return
}
const prefix = await window.showInputBox({
placeHolder: 'Please enter prefix (required)',
validateInput: input => (input ? '' : 'Prefix is required'),
})
if (prefix === undefined) {
return
}
const description = await window.showInputBox({
placeHolder: 'Please enter description (optional)',
})
if (description === undefined) {
return
}
const tabSize = workspace.getConfiguration('editor').get('tabSize')
const spaces = new RegExp(` {${tabSize}}`, 'g')
const snippetObj = {
[name]: {
...(scope && { scope }),
prefix,
body: selection
.split(/\r?\n/)
.map(line => line.replace(/\$(?![\d{]|TM_)/g, '\\$').replace(spaces, '\t')),
...(description && { description }),
},
}
const snippetJSON = JSON.stringify(snippetObj, null, tabSize)
.split('\n')
.slice(1, -1)
.join('\n')
env.clipboard.writeText(`${snippetJSON},`)
window.showInformationMessage(
'Snippet has been copied into the clipboard, please use the command "Snippets: Configure User Snippets" to paste it.',
)
})
subscriptions.push(disposable)
}