2005-09-20 13:26:39 +00:00
|
|
|
/** \file kill.h
|
2012-11-18 10:23:22 +00:00
|
|
|
Prototypes for the killring.
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-11-18 10:23:22 +00:00
|
|
|
Works like the killring in emacs and readline. The killring is cut and paste whith a memory of previous cuts.
|
2005-09-20 13:26:39 +00:00
|
|
|
*/
|
|
|
|
|
2005-10-04 15:11:39 +00:00
|
|
|
#ifndef FISH_KILL_H
|
|
|
|
#define FISH_KILL_H
|
|
|
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
2006-10-12 13:27:32 +00:00
|
|
|
/**
|
|
|
|
Replace the specified string in the killring
|
|
|
|
*/
|
2012-11-19 00:30:30 +00:00
|
|
|
void kill_replace(const wcstring &old, const wcstring &newv);
|
2006-10-12 13:27:32 +00:00
|
|
|
|
|
|
|
|
2012-03-04 03:37:55 +00:00
|
|
|
/** Add a string to the top of the killring */
|
2012-11-19 00:30:30 +00:00
|
|
|
void kill_add(const wcstring &str);
|
2012-03-04 05:46:06 +00:00
|
|
|
|
|
|
|
/** Rotate the killring */
|
2012-01-14 11:41:50 +00:00
|
|
|
const wchar_t *kill_yank_rotate();
|
2012-03-04 05:46:06 +00:00
|
|
|
|
|
|
|
/** Paste from the killring */
|
2012-01-14 11:41:50 +00:00
|
|
|
const wchar_t *kill_yank();
|
2012-03-04 05:46:06 +00:00
|
|
|
|
|
|
|
/** Sanity check */
|
2005-09-20 13:26:39 +00:00
|
|
|
void kill_sanity_check();
|
2012-03-04 05:46:06 +00:00
|
|
|
|
|
|
|
/** Initialize the killring */
|
2005-09-20 13:26:39 +00:00
|
|
|
void kill_init();
|
2012-03-04 05:46:06 +00:00
|
|
|
|
|
|
|
/** Destroy the killring */
|
2005-09-20 13:26:39 +00:00
|
|
|
void kill_destroy();
|
|
|
|
|
2005-10-04 15:11:39 +00:00
|
|
|
#endif
|