#
ff25b1dc |
| 25-Aug-2014 |
nicm <nicm@openbsd.org> |
Don't allow pasting into input-disabled panes, from Anish R Athalye.
|
#
a5427204 |
| 20-Jun-2014 |
nicm <nicm@openbsd.org> |
Comment style nits.
|
#
b736ab22 |
| 13-May-2014 |
nicm <nicm@openbsd.org> |
Don't allow multiple buffers with the same name, from Thomas Adam.
|
#
a41fa27a |
| 13-May-2014 |
nicm <nicm@openbsd.org> |
Add support for named buffers. If you don't name a buffer, things work much as before - buffers are automatically named "buffer0000", "buffer0001" and so on and ordered as a stack. Buffers can be nam
Add support for named buffers. If you don't name a buffer, things work much as before - buffers are automatically named "buffer0000", "buffer0001" and so on and ordered as a stack. Buffers can be named explicitly when creating ("loadb -b foo" etc) or renamed ("setb -b buffer0000 -n foo"). If buffers are named explicitly, they are not deleted when buffer-limit is reached. Diff from J Raynor.
show more ...
|
#
ca678466 |
| 24-Apr-2014 |
nicm <nicm@openbsd.org> |
There is no longer a need for a paste_stack struct or for global_buffers to be global. Move to paste.c.
|
#
dbbd1b46 |
| 02-Apr-2014 |
nicm <nicm@openbsd.org> |
Support UTF-8 with choose-buffer, from Kosuke ASAMI. Also make buffer_sample bigger to let it trim at window right edge.
|
#
f0c50ee5 |
| 31-Mar-2014 |
nicm <nicm@openbsd.org> |
Add setb -a to append and a copy mode append command, from J Raynor with minor changes.
|
#
1ac29a77 |
| 17-Feb-2014 |
nicm <nicm@openbsd.org> |
Fix memory leaks with paste_replace, based on changes from J Raynor.
|
#
7a3aab4e |
| 27-Nov-2012 |
nicm <nicm@openbsd.org> |
Support middle-click paste, based on a diff from Ailin Nemui.
|
#
416cec24 |
| 04-Sep-2012 |
nicm <nicm@openbsd.org> |
Trivial code simplification from Tim Ruehsen.
|
#
7d053cf9 |
| 10-Jul-2012 |
nicm <nicm@openbsd.org> |
xfree is not particularly helpful, remove it. From Thomas Adam.
|
#
bfecd37a |
| 28-Mar-2011 |
nicm <nicm@openbsd.org> |
Style: uint -> u_int and a missing else.
|
#
eca05f1f |
| 30-Dec-2010 |
nicm <nicm@openbsd.org> |
Change from a per-session stack of buffers to one global stack which is much more convenient and also simplifies lot of code. This renders copy-buffer useless and makes buffer-limit now a server opti
Change from a per-session stack of buffers to one global stack which is much more convenient and also simplifies lot of code. This renders copy-buffer useless and makes buffer-limit now a server option.
By Tiago Cunha.
show more ...
|
#
5f093833 |
| 21-Jun-2010 |
nicm <nicm@openbsd.org> |
Add a choose-buffer command for easier use of the paste buffer stack.
|
#
197ec97c |
| 03-Dec-2009 |
nicm <nicm@openbsd.org> |
Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last time now I've configured emacs to make them displayed in really annoying colours...
|
#
5bde14a0 |
| 26-Nov-2009 |
nicm <nicm@openbsd.org> |
Tidy up various bits of the paste code, make the data buffer char * and add comments.
|
#
d28053cc |
| 03-Nov-2009 |
nicm <nicm@openbsd.org> |
tv member of struct paste_buffer is updated but not otherwise used, so remove it.
|
#
85d997dc |
| 20-Sep-2009 |
nicm <nicm@openbsd.org> |
Regularise some fatal messages.
|
#
1937104b |
| 07-Sep-2009 |
nicm <nicm@openbsd.org> |
Give each paste buffer a size member instead of requiring them to be zero-terminated.
|
#
6e06e05f |
| 30-Jul-2009 |
nicm <nicm@openbsd.org> |
Don't leak when rollling buffers off when the paste buffer limit is reached.
|
#
92e1fe33 |
| 02-Jul-2009 |
nicm <nicm@openbsd.org> |
Fix two copy/paste bugs: forbid zero-length buffers to prevent a fatal error when trying to paste them, found by me, and miscalculation of the start/end causing random fatal errors when copying in co
Fix two copy/paste bugs: forbid zero-length buffers to prevent a fatal error when trying to paste them, found by me, and miscalculation of the start/end causing random fatal errors when copying in copy-mode, reported by sthen.
ok sthen "put it in" deraadt
show more ...
|
#
311827fb |
| 01-Jun-2009 |
nicm <nicm@openbsd.org> |
Import tmux, a terminal multiplexor allowing (among other things) a single terminal to be switched between several different windows and programs displayed on one terminal be detached from one termin
Import tmux, a terminal multiplexor allowing (among other things) a single terminal to be switched between several different windows and programs displayed on one terminal be detached from one terminal and moved to another.
ok deraadt pirofti
show more ...
|