mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-30 06:03:49 +08:00
23 lines
534 B
C
23 lines
534 B
C
// Prototypes for the killring.
|
|
//
|
|
// Works like the killring in emacs and readline. The killring is cut and paste whith a memory of
|
|
// previous cuts.
|
|
#ifndef FISH_KILL_H
|
|
#define FISH_KILL_H
|
|
|
|
#include "common.h"
|
|
|
|
/// Replace the specified string in the killring.
|
|
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.
|
|
const wchar_t *kill_yank_rotate();
|
|
|
|
/// Paste from the killring.
|
|
const wchar_t *kill_yank();
|
|
|
|
#endif
|