Skip to content

Commit 7d33db6

Browse files
authored
Merge pull request #6 from vim-denops/unstable
Add unstable flag
2 parents 4386390 + 586f015 commit 7d33db6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

autoload/denops_shared_server/launchctl.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<string>run</string>
1212
<string>-A</string>
1313
<string>--no-check</string>
14+
<string>--unstable</string>
1415
<string>{{script}}</string>
1516
<string>--hostname</string>
1617
<string>{{hostname}}</string>

autoload/denops_shared_server/runtray.template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "denops.vim shared server",
44
"executable": "{{deno}}",
55
"arguments": [
6-
"run", "-A", "--no-check", "{{script}}",
6+
"run", "-A", "--no-check", "--unstable", "{{script}}",
77
"--hostname", "{{hostname}}",
88
"--port", "{{port}}"
99
]

autoload/denops_shared_server/systemctl.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description = Denops shared server
44
[Service]
55
Type=simple
66
Restart = always
7-
ExecStart={{deno}} run -A --no-check {{script}} --hostname {{hostname}} --port {{port}}
7+
ExecStart={{deno}} run -A --no-check --unstable {{script}} --hostname {{hostname}} --port {{port}}
88

99
[Install]
1010
WantedBy=default.target

0 commit comments

Comments
 (0)