From 5fb92396a457839f2c3b6b818f801c26fcb41a7b Mon Sep 17 00:00:00 2001 From: anekos Date: Tue, 17 Feb 2009 17:04:11 +0000 Subject: ;s が Vimperator のデフォルトとかぶっていたので、デフォルトでは無効にした。 (その代わり ;S は使える) git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30203 d0d07461-0603-4401-acd4-de1884942a52 --- caret-hint.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'caret-hint.js') 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 = Caret Hint Move caret position by hint Hint を使ってキャレット位置を移動 - 1.2.0 + 1.2.1 anekos new BSD License (Please read the source code comments of this plugin) 修正BSDライセンス (ソースコードのコメントを参照してください) @@ -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 || '//*'; -- cgit v1.2.3