aboutsummaryrefslogtreecommitdiffstats
path: root/caret-hint.js
diff options
context:
space:
mode:
authoranekos2009-02-17 17:04:11 +0000
committeranekos2009-02-17 17:04:11 +0000
commit5fb92396a457839f2c3b6b818f801c26fcb41a7b (patch)
treed0c89390628b2f32d9456a25ec168cb4aa80426c /caret-hint.js
parent780c575e59e3108c8a07f5f64fd5804420fcb934 (diff)
downloadvimperator-plugins-5fb92396a457839f2c3b6b818f801c26fcb41a7b.tar.bz2
;s が Vimperator のデフォルトとかぶっていたので、デフォルトでは無効にした。
(その代わり ;S は使える) git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30203 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'caret-hint.js')
-rw-r--r--caret-hint.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/caret-hint.js b/caret-hint.js
index 0f48655..5bcaaed 100644
--- a/caret-hint.js
+++ b/caret-hint.js
@@ -38,7 +38,7 @@ let PLUGIN_INFO =
<name>Caret Hint</name>
<description>Move caret position by hint</description>
<description lang="ja">Hint を使ってキャレット位置を移動</description>
- <version>1.2.0</version>
+ <version>1.2.1</version>
<author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author>
<license>new BSD License (Please read the source code comments of this plugin)</license>
<license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license>
@@ -54,7 +54,7 @@ let PLUGIN_INFO =
let g:caret_hint_tail_key = 'C':
Hint mode key.
Move caret position to the tail of selected element.
- let g:caret_hint_select_key = 's':
+ let g:caret_hint_select_key = '' (default: disabled):
Hint mode key.
Move caret position to the head of selected element, and select.
let g:caret_hint_select_tail_key = 'S':
@@ -77,7 +77,7 @@ let PLUGIN_INFO =
let g:caret_hint_tail_key = 'C':
Hint モードのキー
選択した要素の後尾にキャレットを移動する
- let g:caret_hint_select_key = 's':
+ let g:caret_hint_select_key = '' (デフォルト: 無効):
Hint モードのキー
選択した要素の先頭にキャレットを移動し、要素を選択する
let g:caret_hint_select_tail_key = 'S':
@@ -107,7 +107,7 @@ let PLUGIN_INFO =
// XXX 空白も有効
let headMode = gval('caret_hint_key', 'c');
let tailMode = gval('caret_hint_tail_key', 'C');
- let selectHeadMode = gval('caret_hint_select_key', 's');
+ let selectHeadMode = gval('caret_hint_select_key', '');
let selectTailMode = gval('caret_hint_select_tail_key', 'S');
let swapKey = gval('caret_hint_swap_key', 's');
let hintXPath = liberator.globalVariables.caret_hint_xpath || '//*';