Added documentation for g:splitopen_extensions
parent
cd2d198447
commit
b6b1377f93
|
@ -16,6 +16,15 @@ source file in the right window.
|
|||
|
||||
You can configure the following settings:
|
||||
|
||||
### g:splitopen_extensions
|
||||
|
||||
Use this dictionary to define your pairs of left-hand- right-hand-side file
|
||||
types. E.g.
|
||||
|
||||
let g:splitopen_extensions = {"h": "cpp"}
|
||||
|
||||
always places a .cpp file on the right-hand side when opening an .h file and
|
||||
vice versa.
|
||||
|
||||
### g:splitopen_set_fzf_keys
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@ CONTENTS *SplitOpenContents*
|
|||
|
||||
1. Usage ..............................|SplitOpenUsage|
|
||||
2. Configuration ......................|SlitOpenConfiguraton|
|
||||
2.1 g:splitopen_set_fzf_keys.......|SplitOpenConfiguration_set_fzf_keys|
|
||||
2.1 g:splitopen_extensions.........|SplitOpenConfiguration_extensions|
|
||||
2.2 g:splitopen_set_fzf_keys.......|SplitOpenConfiguration_set_fzf_keys|
|
||||
3. License ............................|SplitOpenLicense|
|
||||
4. Changelog ..........................|SplitOpenChangelog|
|
||||
|
||||
|
@ -27,7 +28,19 @@ You can configure the following settings:
|
|||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
2.1 g:splitopen_set_fzf_keys *SplitOpenConfiguration_set_fzf_keys*
|
||||
2.1 g:splitopen_extensions *SplitOpenConfiguration_extensions*
|
||||
|
||||
Use this dictionary to define your pairs of left-hand- right-hand-side file
|
||||
types. E.g.
|
||||
|
||||
let g:splitopen_extensions = {"h": "cpp"}
|
||||
|
||||
always places a .cpp file on the right-hand side when opening an .h file and
|
||||
vice versa.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
2.2 g:splitopen_set_fzf_keys *SplitOpenConfiguration_set_fzf_keys*
|
||||
|
||||
Set this option to 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue