diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2015-06-22 02:17:28 +0200 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2015-06-22 02:19:37 +0200 |
commit | f91644c9caafbdfdeca60fc0628acde603aeade0 (patch) | |
tree | a05ec25d934e94c5ecdb82880253410e9b1ca649 /Doc/Zsh | |
parent | 09e1b2434d6c44d95d97c87d5e803e5f5e747b6e (diff) | |
download | zsh-f91644c9caafbdfdeca60fc0628acde603aeade0.tar.gz zsh-f91644c9caafbdfdeca60fc0628acde603aeade0.tar.xz zsh-f91644c9caafbdfdeca60fc0628acde603aeade0.zip |
35554: Document narrow-to-region -l and -r.
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/contrib.yo | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/Zsh/contrib.yo b/Doc/Zsh/contrib.yo index 323bf0f9a..09ac5c850 100644 --- a/Doc/Zsh/contrib.yo +++ b/Doc/Zsh/contrib.yo @@ -2272,7 +2272,8 @@ tindex(narrow-to-region) tindex(narrow-to-region-invisible) redef(SPACES)(0)(tt(ifztexi(NOTRANS(@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ))ifnztexi( ))) xitem(tt(narrow-to-region )[ tt(-p) var(pre) ] [ tt(-P) var(post) ]) -xitem(SPACES()[ tt(-S) var(statepm) | tt(-R) var(statepm) ] [ tt(-n) ] [ var(start) var(end) ]) +xitem(SPACES()[ tt(-S) var(statepm) | tt(-R) var(statepm) | [ tt(-l) var(lbufvar) ] [ tt(-r) var(rbufvar) ] ]) +xitem(SPACES()[ tt(-n) ] [ var(start) var(end) ]) item(tt(narrow-to-region-invisible))( Narrow the editable portion of the buffer to the region between the cursor and the mark, which may be in either order. The region may not be empty. @@ -2308,9 +2309,15 @@ parameter, except that parameters beginning with the prefix tt(_ntr_) are reserved for use within tt(narrow-to-region). Typically the parameter will be local to the calling function. +The options tt(-l) var(lbufvar) and tt(-r) var(rbufvar) may be used to +specify parameters where the widget will store the resulting text from +the operation. The parameter var(lbufvar) will contain var(LBUFFER) +and var(rbufvar) will contain var(RBUFFER). Neither of these two options +may be used with tt(-S) or tt(-R). + tt(narrow-to-region-invisible) is a simple widget which calls tt(narrow-to-region) with arguments which replace any text outside the -region with `tt(...)'. +region with `tt(...)'. It does not take any arguments. The display is restored (and the widget returns) upon any zle command which would usually cause the line to be accepted or aborted. Hence an |