diff options
author | anekos | 2010-03-25 14:03:50 +0000 |
---|---|---|
committer | anekos | 2010-03-25 14:03:50 +0000 |
commit | ae85c86cdfc254185de21bd2b09bd9e2b8ba2dc0 (patch) | |
tree | 9d2906d7b70007964f0829d9b630d3e2357d6fa8 /x-hint.js | |
parent | aed6d117ce8af27fd986a4d6a11a6c64898ceff4 (diff) | |
download | vimperator-plugins-ae85c86cdfc254185de21bd2b09bd9e2b8ba2dc0.tar.bz2 |
説明を description に追加
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37090 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'x-hint.js')
-rwxr-xr-x | x-hint.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -128,7 +128,7 @@ let INFO = (function () { - const description = 'Show the hint with given xpath'; + const description = 'Show the hint with given xpath.'; let last = {}; @@ -172,7 +172,7 @@ let INFO = commands.addUserCommand( ['xh[int]'], - description, + description + '(:xhint <mode> <xpath>)', function (args) { showHintsWith(args[0], args.literalArg); }, @@ -198,7 +198,7 @@ let INFO = commands.addUserCommand( ['xhintdo', 'xhdo'], - 'Run js-code with X-Hint', + 'Run js-code with X-Hint. (:xhdo <xpath> <javascript>)', function (args) { js = args.literalArg; showHintsWith(hintModeText, args[0]); |