#filetype
Uses the unix program file to guess the filetype of the data starting at
the current cursor position. It can be used when the cursor is on the
first byte of a file or when searching for files inside a harddrive device.
plugin file.cpp
#filter
Gives the content of the selection as input to a user specified command
(e.g. grep '^X'|sort|uniq) and places the output of that command in the
copy buffer.
plugin filter.cpp
#disassembler
File content at cursor position is translated to assembler code.
Makes use of gdb. Use nextdisassem to jump to the next machine code.
Use gotosymol (elftables.plug) to jump to procedure using its
procedure name
plugin disass.cc
#nextdisassem
Jumps to next machine code instruction and disassemble it:
Cursor position is moved the length of the current machine code
statement further and disassembler is called.
plugin disass.cc
#backward
Adds the backward filter.
This filter tries to reverse the direction of the last applied filter.
plugin backward.cc
#compare
Compares last made selection with current file at current cursor
position for the length of that selection.
If some variant of klipper isn't running, there is no limit on selection
size (As long as they say to be of class klipper they form no problem,
because I don't give the content of the whole selection to programs of
class klipper).
plugin searchclip.cc
#searchclip
Searches in current file for the content the bed's copy buffer.
It takes over the search settings (direction, case sensitivity, regex or not,
on boundaries or not, from current position or from edge of file) of Alt-m,s.
Currently it repeatedly searches for the first block of the copy buffer
and then compares it with the whole copy buffer.
plugin searchclip.cc
#tryinstall1
Installs Float with installpart/1 and getFLoat
plugin install.cc
#tryinstall2
Installs Digit with installpart(part,0) and getDigit
plugin install.cc
#cutselect
Standard cut: selection is put in copy buffer, file after selection
is moved to begin selection and rest file is truncated
plugin cut.cc
#insertpast
Standard past: file is extended and content after current file
position moved so that copy buffer content can be inserted
plugin cut.cc
#index2table
index2table

index2table interprets the file content as long's (4 bytes)
which are indexes in a table at some offset in the current file.
Instead of the index number it displays the content of that table
at that position. index2table is a filter that should be applied
to a datatype appropriate for the data in the table. For this
purpose this procedure asks to specify at what offset in the file
the labels start, with what index the table starts and table length.
Index2table is for example
used to show the names of procedures in a symbol table.
index2table is then applied to multibyte ascii that shows
this label instead of the index.
dynsym and symtab are sub classes of index2table.
They are used by misc/dynsym.bedda and misc/symtab.bedda.
Because of this use index2table was previously called symtable.
plugin index2table.cc
#section
Used by composed datatype file sectionheader.bedda to show
labels of names in section header
plugin elftables.cc
#dynsym
Used by composed datatype file dynsym.bedda to show the procedure
names in dynsym (dynamische) symbol table.
plugin elftables.cc
#symtab
Used by composed datatype file symtab.bedda to show the procedure
names in symtab (statische) symbol table.
plugin elftables.cc
#gotosymbol
Procedure searches in symbol tables symtab and dynsym for a given
symbol. It sets the cursor to its fileoffset and starts a better fitting
datatype. It shows the offset and its size in the message line.
plugin elftables.cc
#rxvtmenu
Add rxvt menu.
You can remove the scrollbar, reverse video and if you don't have
a buggy rxvt you can change fonts.
plugin rxvt.cc
#switchsize
Switches xterm size to a large size if small or to a small size if large
plugin switchsize.cc
#pastclipboard
Past clipboard. This is data copied by bed or a Xwindows program.
plugin putselect.cc
#makeselection
Turn on or off selection. Selections can be copied and pasted, saved,
edited etc. Within a xterm the selection is usually shared with other
X window Programs.
plugin putselect.cc
#pastselection
Past Xwindows selection.
plugin putselect.cc
#copyclipboard
Copies selection.
plugin putselect.cc
#pastspecial
Only available if a bed owns the clipboard.
Shown:
	With this function you can past data formatted as shown on
	the screen. So you can for example insert in ascii the data as
	shown in heximals
Datatype:
	Past datatype of copied data.
plugin putselect.cc
#exportselection
Make selection the xwindows selection.
plugin putselect.cc
