aboutsummaryrefslogtreecommitdiff
path: root/window-copy.c
Commit message (Collapse)AuthorAge
...
* Give clock mode its own timer.nicm2015-08-28
|
* Set working directory for run-shell and if-shell.nicm2015-04-24
|
* cmd_mouse_pane can return NULL, check for that.nicm2015-04-21
|
* Remove unused-but-set variables, from Thomas Adam.nicm2015-04-20
|
* Make jump-to-backward/jump-to-forward repeatable withnicm2015-04-20
| | | | jump-reverse/jump-again, from Jacob Niehus.
* Rewrite of tmux mouse support which was a mess. Instead of havingnicm2015-04-19
| | | | | | | | | | | | | | | | | | | | | | | | | options for "mouse-this" and "mouse-that", mouse events may be bound as keys and there is one option "mouse" that turns on mouse support entirely (set -g mouse on). See the new MOUSE SUPPORT section of the man page for description of the key names and new flags (-t= to specify the pane or window under mouse as a target, and send-keys -M to pass through a mouse event). The default builtin bindings for the mouse are: bind -n MouseDown1Pane select-pane -t=; send-keys -M bind -n MouseDown1Status select-window -t= bind -n MouseDrag1Pane copy-mode -M bind -n MouseDrag1Border resize-pane -M To get the effect of turning mode-mouse off, do: unbind -n MouseDrag1Pane unbind -temacs-copy MouseDrag1Pane The old mouse options are now gone, set-option -q may be used to suppress warnings if mixing configuration files.
* Add a -x flag to copy-selection, append-selection and start-named-buffernicm2015-04-10
| | | | | to prevent it exiting copy mode after copying. From J Raynor with a few tweaks by me.
* Fix some format specifier nits, from Ben Boeckel.nicm2015-03-31
|
* Wrap all the individual format_* calls in a single format_defaultsnicm2015-02-05
| | | | functions.
* Shorten some long lines.nicm2015-01-15
|
* Only redraw affected lines when selection changes with mouse. Fromnicm2014-12-15
| | | | Michael Graczyk.
* Expand formats in copy-pipe command, suggested by Suraj N Kurapati.nicm2014-11-09
|
* Wrap when copy mode is used for output, from Balazs Kezes.nicm2014-11-06
|
* Add V for select line with vi(1) keys. From Juho Pohjala.nicm2014-11-06
|
* Fix some spacing nits.nicm2014-10-22
|
* Add xreallocarray and remove nmemb argument from xrealloc.nicm2014-10-08
|
* Copy ACS characters as UTF-8, from Balazs Kezes.nicm2014-10-02
|
* Various minor style and spacing nits.nicm2014-09-01
|
* No need to repeat other-end more than once, from Juho Pohjala. Also addnicm2014-08-11
| | | | it to the commands list while here.
* Fix two copy mode problems:nicm2014-08-11
| | | | | | | | | 1. In vi mode the selection doesn't include the last character if you moved the cursor up or left. 2. In emacs mode the selection includes the last character if you moved the cursor to the left. From Balazs Kezes.
* Copy newline when at EOL in vi(1) mode, from Balazs Kezes.nicm2014-06-19
|
* Simplify copy lines, from Keith Amling.nicm2014-05-14
|
* Add a copy mode key binding to copy to a named buffer. From J Raynor.nicm2014-05-13
|
* Add support for named buffers. If you don't name a buffer, things worknicm2014-05-13
| | | | | | | | 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.
* There is no longer a need for a paste_stack struct or for global_buffersnicm2014-04-24
| | | | to be global. Move to paste.c.
* Some more long lines.nicm2014-04-17
|
* Don't blindly increase offsets by the return value of snprintf, if therenicm2014-04-11
| | | | | wasn't enough space this will go off the end. Instead clamp to the available space. Fixes crash reported by Julien Rebetez.
* Work out mouse scroll wheel effect when the mouse is first detected andnicm2014-04-03
| | | | | | | store it in struct mouse_event, reduce the scroll size the 3 but allow shift to reduce it to 1 and meta and ctrl to multiply by 3 if the terminal supports them, also support wheel in choose mode. From Marcel Partap.
* Add setb -a to append and a copy mode append command, from J Raynor withnicm2014-03-31
| | | | minor changes.
* Fix memory leaks with paste_replace, based on changes from J Raynor.nicm2014-02-17
|
* Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm2014-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | options with a single foo-style option. For example: set -g status-fg yellow set -g status-bg red set -g status-attr blink Becomes: set -g status-style fg=yellow,bg=red,blink The -a flag to set can be used to add to rather than replace a style. So: set -g status-bg red Becomes: set -ag status-style bg=red Currently this is fully backwards compatible (all *-{fg,bg,attr} options remain) but the plan is to deprecate them over time. From Tiago Cunha.
* Support paste key in copy mode input (for search etc). Also clamp lengthnicm2014-01-22
| | | | to screen width.
* Only exit copy mode at the bottom if no selection in progress, fromnicm2014-01-22
| | | | Benoit Pierre.
* missing unsigned char casts areound tolower()deraadt2013-11-20
| | | | ok nicm
* Support case insensitive searching in the same manner as emacs - allnicm2013-11-09
| | | | | lowercase means case insensitive, any uppercase means case sensitive. From J Raynor.
* Correctly redraw the top two lines in copy mode when they are selected -nicm2013-11-08
| | | | | the selection was being updated before the redraw so the markings were lost. Based on a fix from J Raynor.
* Key to swap to other end of selection (bound to o with vi keys), from Jnicm2013-10-23
| | | | Raynor.
* Make next-word-end work properly with vi(1) keys, reported by patrickNicholas Marriott2013-07-12
| | | | keshishian.
* Whitespace nits, from Ben Boeckel.Nicholas Marriott2013-07-05
|
* Create a new context when copying instead of using the inputNicholas Marriott2013-03-25
| | | | | context. The input context may not exist yet. Fixes crash when copying from config file errors.
* Add copy-pipe mode command to copy selection and also pipe to a command.Nicholas Marriott2013-03-22
|
* No more lint means no more ARGSUSED.Nicholas Marriott2013-03-22
|
* Automatically reflow wrapped lines when a pane is resized, requested byNicholas Marriott2013-02-05
| | | | many over the years and finally implemented by Richard Woodbury.
* Rather than having two grids for each pane, one for ASCII and one forNicholas Marriott2013-01-18
| | | | | UTF-8, collapse the two together. Simplifies the code at the expense of more memory (which can probably be reduced again later).
* When scrolling in copy mode with the mouse, scroll screen rather thanNicholas Marriott2012-11-27
| | | | | moving cursor. This change from Ailin Nemui, alternative to a change from Stephen Hicks.
* Make mouse event structure clearer by defining events (up, click, drag)Nicholas Marriott2012-10-26
| | | | | and simplifying how buttons and wheels are represented, from Ailin Nemui. Should be no functional changes.
* Fix search forward so it can match strings on the last line, SF bugNicholas Marriott2012-09-25
| | | | 3571114 from "LiJunLe".
* Instead of numbering choose mode items 0-9a-z and then nothing, numberNicholas Marriott2012-08-11
| | | | | them all and if there are more than 10 use a prompt when 0-9 is pressed. From Thomas Adam.
* xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott2012-07-10
|
* Minor style nits - return ().Nicholas Marriott2012-04-01
|