diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 14:59:24 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 14:59:24 +0900 |
commit | d196f65d7ea384c30876ead5bb7c1a90482c84cf (patch) | |
tree | b2a833f0c31a4158e884a6fa133c3247462badf6 /src/console | |
parent | 9e0e1b5d1a1c2fefb32bd6f35708f2f62884c99b (diff) |
Fix set command completions
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/actions/console.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/actions/console.ts b/src/console/actions/console.ts index 205676b..80ea6b0 100644 --- a/src/console/actions/console.ts +++ b/src/console/actions/console.ts @@ -243,7 +243,7 @@ const getPropertyCompletions = async ( return [ { caption: item.name, - content: name + " " + item.name, + content: command + " " + item.name, url: "Set " + desc, }, ]; |