Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xyb3rt/urxvt-perls
Perl extensions for the rxvt-unicode terminal emulator
https://github.com/xyb3rt/urxvt-perls
Last synced: about 2 months ago
JSON representation
Perl extensions for the rxvt-unicode terminal emulator
- Host: GitHub
- URL: https://github.com/xyb3rt/urxvt-perls
- Owner: xyb3rt
- License: gpl-2.0
- Archived: true
- Created: 2010-08-02T05:06:41.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2020-07-19T22:00:35.000Z (over 4 years ago)
- Last Synced: 2024-08-04T23:30:58.331Z (5 months ago)
- Language: Perl
- Homepage:
- Size: 94.7 KB
- Stars: 753
- Watchers: 40
- Forks: 110
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - xyb3rt/urxvt-perls - Perl extensions for the rxvt-unicode terminal emulator (Perl)
README
A small collection of perl extensions for the rxvt-unicode terminal emulator.
Installation
------------
Simply place the scripts you want to install in /usr/lib/urxvt/perl/ for
system-wide availability or in ~/.urxvt/ext/ for user-only availability.
You can also put them in a folder of your choice, but then you have to add this
line to your .Xdefaults/.Xresources:URxvt.perl-lib: /your/folder/
See the following sections for information on how to enable the scripts or set
script-specific options and keyboard mappings in your .Xdefaults/.Xresources.keyboard-select
---------------
Use keyboard shortcuts to select and copy text.After installing, put the following lines in your .Xdefaults/.Xresources:
URxvt.perl-ext-common: ...,keyboard-select
URxvt.keysym.M-Escape: perl:keyboard-select:activateThe following line overwrites the default Meta-s binding and allows to activate
keyboard-select directly in backward search mode:URxvt.keysym.M-s: perl:keyboard-select:search
Use Meta-Escape to activate selection mode, then use the following keys:
h/j/k/l: Move cursor left/down/up/right (also with arrow keys)
g/G/0/^/$/H/M/L/f/F/;/,/w/W/b/B/e/E: More vi-like cursor movement keys
'/'/?: Start forward/backward search
n/N: Repeat last search, N: in reverse direction
Ctrl-f/b: Scroll down/up one screen
Ctrl-d/u: Scroll down/up half a screen
v/V/Ctrl-v: Toggle normal/linewise/blockwise selection
y/Return: Copy selection to primary buffer, Return: quit afterwards
Y: Copy selected lines to primary buffer or cursor line and quit
q/Escape: Quit keyboard selection modeOptions:
URxvt.keyboard-select.clipboard: If true, copy to clipboard too