Man page - urxvt-eval(1)
Packages contains this manual
- urxvt-background(1)
- urxvtcd(1)
- urxvt-searchable-scrollback(1)
- urxvt-clickthrough(1)
- urxvt-clipboard-osc(1)
- urxvt-xim-onthespot(1)
- urxvt-extensions(1)
- urxvt-selection(1)
- urxvt-tabbed(1)
- urxvt-matcher(1)
- urxvt-selection-pastebin(1)
- urxvt-confirm-paste(1)
- urxvtc(1)
- urxvt-selection-autotransform(1)
- urxvt-overlay-osc(1)
- urclock(1)
- urxvtperl(3)
- urxvt(7)
- urxvt-digital-clock(1)
- urxvt-block-graphics-to-ascii(1)
- urxvt-kuake(1)
- urxvt-readline(1)
- urxvt-font-size(1)
- urxvt-option-popup(1)
- urxvtd(1)
- urxvt-keysym-list(1)
- rxvt(1)
- urxvt-eval(1)
- urxvt-selection-to-clipboard(1)
- rxvt-unicode(1)
- urxvt-example-refresh-hooks(1)
- urxvt(1)
- urxvt-bell-command(1)
- urxvt-remote-clipboard(1)
- urxvt-selection-popup(1)
apt-get install rxvt-unicode
Manual
urxvt-eval
NAMEEXAMPLES
DESCRIPTION
NAME
eval - evaluate arbitrary perl code using actions
EXAMPLES
URxvt.keysym.M-c:
eval:selection_to_clipboard
URxvt.keysym.M-v: eval:paste_clipboard
URxvt.keysym.M-V: eval:paste_primary
URxvt.keysym.M-Up: eval:scroll_up 1
URxvt.keysym.M-Down: eval:scroll_down 1
URxvt.keysym.M-Home: eval:scroll_to_top
URxvt.keysym.M-End: eval:scroll_to_bottom
DESCRIPTION
Add support for
evaluating arbitrary perl code using actions in keysym
resources. If a keysym
action
takes the form
"eval:STRING", the specified
STRING
is
evaluated as a Perl expression. While the full urxvt API is
available, the following methods are also provided for
usersβ convenience, as they implement basic actions:
scroll_up $count
scroll_up_pages $count
scroll_down $count
scroll_down_pages $count
Scroll up or down by $count lines or pages.
scroll_to_top
scroll_to_bottom
Scroll to the top or bottom of the scrollback.
selection_to_clipboard
Copy the selection to the CLIPBOARD.
paste_primary
paste_clipboard
Paste the value of the PRIMARY or CLIPBOARD selection.