2005-10-04 15:11:39 +00:00
|
|
|
#ifndef FISH_KILL_H
|
|
|
|
#define FISH_KILL_H
|
|
|
|
|
2015-07-25 15:14:25 +00:00
|
|
|
#include "common.h"
|
2023-05-30 21:22:09 +00:00
|
|
|
#include "kill.rs.h"
|
2012-03-04 05:46:06 +00:00
|
|
|
|
2016-05-02 05:16:00 +00:00
|
|
|
/// Rotate the killring.
|
2019-03-17 00:26:42 +00:00
|
|
|
wcstring kill_yank_rotate();
|
2012-03-04 05:46:06 +00:00
|
|
|
|
2016-05-02 05:16:00 +00:00
|
|
|
/// Paste from the killring.
|
2019-03-17 00:26:42 +00:00
|
|
|
wcstring kill_yank();
|
2012-03-04 05:46:06 +00:00
|
|
|
|
2021-04-09 19:08:56 +00:00
|
|
|
/// Get copy of kill ring as vector of strings
|
2023-04-18 22:19:10 +00:00
|
|
|
std::vector<wcstring> kill_entries();
|
2021-04-09 19:08:56 +00:00
|
|
|
|
2005-10-04 15:11:39 +00:00
|
|
|
#endif
|