-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#14] Modify definition and goBack commands
- Loading branch information
Showing
6 changed files
with
46 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
*tsuquyomi* はTypeScript向けのVim plugin です. | ||
|
||
Version: 0.4.1 | ||
Version: 0.4.2 | ||
Author : Quramy <[email protected]> | ||
License: MIT license {{{ | ||
Permission is hereby granted, free of charge, to any person obtaining | ||
|
@@ -133,10 +133,6 @@ Prompt: | |
|
||
:TsuquyomiDefinition *:TsuquyomiDefinition* | ||
シンボルが定義された場所へ遷移させます. | ||
定義箇所がカレントバッファに存在する場合はそこにカーソルを | ||
移動させます. | ||
そうでない場合, 定義箇所を含むファイルを|split|で開いてから | ||
カーソルを移動します. | ||
|
||
:TsuquyomiGoBack *:TsuquyomiGoBack* | ||
カーソルを最後に|:TsuquyomiDefinition|を実行した箇所へ | ||
|
@@ -204,9 +200,12 @@ g:tsuquyomi_nodejs_path (デフォルト値 'node') | |
Node.js の実行パス. | ||
|
||
*g:tsuquyomi_definition_split* | ||
g:tsuquyomi_definition_split (デフォルト値 1) | ||
別ファイル定義への遷移時, ウィンドウを分割するかどうか. | ||
|:TsuquyomiDefinition| も参考のこと. | ||
g:tsuquyomi_definition_split (デフォルト値 0) | ||
|:TsuquyomiDefinition| にて別ファイル定義への遷移時, | ||
ウィンドウを分割するかどうか. | ||
* 0: |:edit| | ||
* 1: |:split| | ||
* 2: |:vsplit| | ||
|
||
------------------------------------------------------------------------------ | ||
キーマッピング *tsuquyomi-key-mappings* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
*tsuquyomi* is a Vim plugin for TypeScript. | ||
|
||
Version: 0.4.1 | ||
Version: 0.4.2 | ||
Author : Quramy <[email protected]> | ||
License: MIT license {{{ | ||
Permission is hereby granted, free of charge, to any person obtaining | ||
|
@@ -132,10 +132,6 @@ COMMANDS *tsuquyomi-commands* | |
|
||
:TsuquyomiDefinition *:TsuquyomiDefinition* | ||
Navigate to the location where the symbol is defined. | ||
If the location of definition is in the current buffer, | ||
move the cursor. | ||
Otherwise, |split| the current window and open the file which | ||
contains the definition. | ||
|
||
:TsuquyomiGoBack *:TsuquyomiGoBack* | ||
Move the cursor position to the location where | ||
|
@@ -200,9 +196,12 @@ g:tsuquyomi_nodejs_path (default 'node') | |
|
||
|
||
*g:tsuquyomi_definition_split* | ||
g:tsuquyomi_definition_split (default 1) | ||
g:tsuquyomi_definition_split (default 0) | ||
Whether to open a new split when navigating to definition in | ||
another file. See |:TsuquyomiDefinition|. | ||
another file when calling |:TsuquyomiDefinition|. | ||
* 0: |:edit| | ||
* 1: |:split| | ||
* 2: |:vplit| | ||
|
||
------------------------------------------------------------------------------ | ||
KEY MAPPINGS *tsuquyomi-key-mappings* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters