mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-06 00:41:15 -03:00
Initial revision
darcs-hash:20050920132639-ac50b-fa3b476891e1f5f67207cf4cc7bf623834cc5edc.gz
This commit is contained in:
31
kill.h
Normal file
31
kill.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/** \file kill.h
|
||||
Prototypes for the killring.
|
||||
|
||||
Works like the killring in emacs and readline. The killring is cut and paste whith a memory of previous cuts.
|
||||
*/
|
||||
|
||||
/**
|
||||
Add a string to the top of the killring
|
||||
*/
|
||||
void kill_add( wchar_t *str );
|
||||
/**
|
||||
Rotate the killring
|
||||
*/
|
||||
wchar_t *kill_yank_rotate();
|
||||
/**
|
||||
Paste from the killring
|
||||
*/
|
||||
wchar_t *kill_yank();
|
||||
/**
|
||||
Sanity check
|
||||
*/
|
||||
void kill_sanity_check();
|
||||
/**
|
||||
Initialize the killring
|
||||
*/
|
||||
void kill_init();
|
||||
/**
|
||||
Destroy the killring
|
||||
*/
|
||||
void kill_destroy();
|
||||
|
||||
Reference in New Issue
Block a user