Scroll to navigation

FvwmConsoleC.pl(1) Fvwm Modules FvwmConsoleC.pl(1)

NAME

FvwmConsoleC.pl - Command editor for fvwm command input interface

SYNOPSIS

FvwmConsole -e /usr/X11/lib/fvwm/FvwmConsoleC.pl

COPYRIGHT

Copyright 1996, Toshi Isogai. No guarantees or warranties are provided. Use this program at your own risk. Permission to use this program for any purpose is given, as long as the copyright is kept intact.

DESCRIPTION

FvwmConsoleC.pl offers editing capabilities while the user is entering the line. By default, the line editing commands are similar to those of emacs. It also offers substitution , which replaces a pattern to a string before it sends the command.

FUNCTIONS

Functions are bound to a key or key combination to be invoked. The followings are functions available and their default key bindings.

Meta-k, Ctrl-x Ctrl-b
List up key bindings and substitutions.

Move to the beginning of history.

Move to the beginning of history. If it is in search mode, continue.
Home, Ctrl-a
Move cursor to the beginning of the line.

Backspace n times. default of n is 1.
Ctrl-x Ctrl-k
Cancel the current input.

Delete the line from the beginning to the cursor.

Delete the word from the beginning to the cursor.
Delete n characters from the cursor to the right. Default of n is 1.

Delete the line from the cursor to the end.

Delete the word from the cursor to the end.

Delete the entire line.
Enter, Ctrl-j, Ctrl-m
Perform substitution if applicable and send the line to fvwm.

Send the line to fvwm without any substitution.

Move to the end of history.

Move to the end of history. If it is in search mode, continue.
End, Ctrl-e
Move the cursor to the end of line.

Insert string at the cursor.

Insert the last argument of the previous command at the cursor.

Insert the n-th argument of the previous command at the cursor.

List up available editing functions.

Move the cursor to the next character.

Move to the next line in history.

Move the cursor to the next word.

Wait for the next character typed in for multi-key binding.

Move the cursor to the previous character.

Move to the previous line in history.

Move the cursor to the previous word.
Ctrl-q
Insert the next character typed into the buffer literally.
Ctrl-s
Search pattern in history.

Search pattern in history in reverse order.
Meta-s
Substitute all patterns to strings and reprint the line. The substitutions are not nested and performed in the order that they are defined.

CONFIGURATION

The key binding can be overridden or defined in fvwm module configuration.

*FvwmConsole: Key \ck prev_line

Non-space character sequence need not be quoted. In order to undefine, omit the last argument.

*FvwmConsole: Key \ck

Note that non-meta character is case sensitive. \c means control key, \e means escape, and \m is alt key.
It also accepts Subst configuration. Users often input long fvwm command repeatedly. Subst will replace particular input sequence to user defined string. Example:

*FvwmConsole: Subst '^bigx' 'Exec xterm -g 120x60+0+0 -fn 10x20 -fg black -bg lemonchiffon'

Typing 'bigx<return>' in FvwmConsole will launch xterm. '^' denotes the beginning of line in regular expression. 'pl' in the middle of the command will not be replaced. Although the format looks different, it takes Perl regular expression. It just uses single or double quote as the delimiter. Single or double quotes have no difference, although they have to match, and cannot include itself in the string.

*FvwmConsole: Subst '^g\s*(\d+)' 'Desk 0 0\nGotoPage 0 $1\nFocus'

Entering 'g4' or 'g 4' will jump to desk 0 page 0 4 and focus.

INVOCATION

FvwmConsoleC.pl should be invoked by FvwmConsole.

SEE ALSO

FvwmConsole(1x), perlre(1)

AUTHOR

Toshi Isogai

05 September 2019 (2.6.9) 3rd Berkeley Distribution