-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
106 lines (106 loc) · 3.53 KB
/
package.json
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "open-in-vim",
"displayName": "Open in Vim",
"description": "Opens current file in vim",
"repository": "jonsmithers/vscode-open-in-vim",
"version": "0.7.0",
"publisher": "jonsmithers",
"license": "MIT",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"keywords": [
"vim"
],
"activationEvents": [
"onCommand:open-in-vim.open"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "open-in-vim.open",
"title": "Open in Vim"
}
],
"configuration": {
"type": "object",
"title": "Open in Vim",
"properties": {
"open-in-vim.openMethod": {
"type": "string",
"enum": [
"gvim",
"integrated-terminal",
"kitty",
"linux.gnome-terminal",
"linux.tilix",
"macos.iterm",
"macos.macvim"
],
"scope": "resource",
"default": "integrated-terminal",
"description": "Determines how vim gets launched"
},
"open-in-vim.useNeovim": {
"type": "boolean",
"default": false,
"description": "Use Neovim instead of Vim (does not apply to gvim/macvim open method)"
},
"open-in-vim.restoreCursorAfterVim": {
"type": "boolean",
"default": false,
"description": "(EXPERIMENTAL) Sync cursor position to vscode when vim quits"
},
"open-in-vim.integrated-terminal.pathToShell": {
"type": "string",
"default": null,
"definition": "Path to unix shell which will host the vim process."
},
"open-in-vim.linux.gnome-terminal.args": {
"type": "string",
"scope": "resource",
"default": "--hide-menubar --full-screen",
"description": "Extra args to use with gnome-terminal"
},
"open-in-vim.linux.tilix.args": {
"type": "string",
"scope": "resource",
"default": "--full-screen",
"description": "Extra args to use with tilix"
},
"open-in-vim.macos.iterm.profile": {
"type": "string",
"scope": "resource",
"default": "default profile",
"description": "Profile to use for iterm window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"icon": "images/icon.png",
"dependencies": {
"@types/tmp": "*",
"open": "^8.4.1",
"tmp": "*"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"@types/vscode": "*",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"typescript": "*",
"vscode-test": "*"
}
}