Clean up the kill ring

This commit is contained in:
ridiculousfish
2012-03-03 21:46:06 -08:00
parent 5ae77b4317
commit dfba35aee8
3 changed files with 37 additions and 158 deletions

25
kill.h
View File

@@ -17,25 +17,20 @@ void kill_replace( const wcstring &old, const wcstring &newv );
/** Add a string to the top of the killring */
void kill_add( const wcstring &str );
/**
Rotate the killring
*/
/** Rotate the killring */
const wchar_t *kill_yank_rotate();
/**
Paste from the killring
*/
/** Paste from the killring */
const wchar_t *kill_yank();
/**
Sanity check
*/
/** Sanity check */
void kill_sanity_check();
/**
Initialize the killring
*/
/** Initialize the killring */
void kill_init();
/**
Destroy the killring
*/
/** Destroy the killring */
void kill_destroy();
#endif