onto C<@{ $term->{option_popup_hook} }>, which gets called whenever the
popup is being displayed.
-It's sole argument is the popup menu, which can be modified. It should
+Its sole argument is the popup menu, which can be modified. It should
either return nothing or a string, the initial boolean value and a code
reference. The string will be used as button text and the code reference
will be called when the toggle changes, with the new boolean value as
onto C<@{ $term->{selection_popup_hook} }>, which gets called whenever the
popup is being displayed.
-It's sole argument is the popup menu, which can be modified. The selection
+Its sole argument is the popup menu, which can be modified. The selection
is in C<$_>, which can be used to decide whether to add something or not.
It should either return nothing or a string and a code reference. The
string will be used as button text and the code reference will be called
C<a>s:
push @{ $self->{term}{selection_popup_hook} }, sub {
- /a/ ? ("a to be" => sub { s/a/b/g }
+ /a/ ? ("a to b" => sub { s/a/b/g }
: ()
};
This (experimental) perl extension implements OnTheSpot editing. It does
not work perfectly, and some input methods don't seem to work well with
-OnTheSpot editing in general, but it seems to work at leats for SCIM and
+OnTheSpot editing in general, but it seems to work at least for SCIM and
kinput2.
You enable it by specifying this extension and a preedit style of
Initially, the window will not be shown when using this extension.
-This is useful if you need a single terminal thats not using any desktop
+This is useful if you need a single terminal that is not using any desktop
space most of the time but is quickly available at the press of a key.
The accelerator key is grabbed regardless of any modifiers, so this
=item remote-clipboard
Somewhat of a misnomer, this extension adds two menu entries to the
-selection popup that allows one ti run external commands to store the
+selection popup that allows one to run external commands to store the
selection somewhere and fetch it again.
We use it to implement a "distributed selection mechanism", which just