This repository was archived by the owner on Feb 23, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #422 from liquidz/dev
3.10.0
- Loading branch information
Showing
7 changed files
with
62 additions
and
3 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
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 @@ | ||
*vim-iced.txt* Clojure interactive development environment for Vim8/Neovim | ||
|
||
Version: 3.9.3 | ||
Version: 3.10.0 | ||
Author : Masashi Iizuka <[email protected]> | ||
License: MIT LICENSE | ||
|
||
|
@@ -429,6 +429,11 @@ STDOUT BUFFER *vim-iced-stdout-buffer* | |
If you don't use notification for standard output, | ||
see |g:iced#buffer#stdout#enable_notify| option. | ||
|
||
For delimiters: | ||
It is useful to have a delimited line in the unit of output | ||
to limit the range of what you want to see. | ||
See |g:iced#buffer#stdout#enable_delimiter| for more information. | ||
|
||
If you show buffer content in another application or display, | ||
|g:iced#buffer#stdout#file| option is available for writing file. | ||
|
||
|
@@ -2173,6 +2178,25 @@ g:iced#buffer#stdout#size | |
Otherwise, opened with the half size of the current window. | ||
Default value is `v:null`. | ||
|
||
*g:iced#buffer#stdout#enable_delimiter* | ||
g:iced#buffer#stdout#enable_delimiter | ||
If {v:true}, a delimiter line is appended after specified delays. | ||
See followings for delimiter line and delay: | ||
- |g:iced#buffer#stdout#delimiter_delay| | ||
- |g:iced#buffer#stdout#delimiter_line| | ||
Default value is `v:true`. | ||
|
||
*g:iced#buffer#stdout#delimiter_delay* | ||
g:iced#buffer#stdout#delimiter_delay | ||
A delay time for |g:iced#buffer#stdout#enable_delimiter|. | ||
Unit is milli sec. | ||
Default value is `500`. | ||
|
||
*g:iced#buffer#stdout#delimiter_line* | ||
g:iced#buffer#stdout#delimiter_line | ||
A delimiter line for |g:iced#buffer#stdout#enable_delimiter|. | ||
Default value is `';; ----------'`. | ||
|
||
------------------------------------------------------------------------------ | ||
FORMATTER *vim-iced-customizing-formatter* | ||
|
||
|
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