fish-shell/src/kill.h

17 lines
283 B
C++
Raw Normal View History

#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
/// Rotate the killring.
2019-03-17 00:26:42 +00:00
wcstring kill_yank_rotate();
2012-03-04 05:46:06 +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
/// Get copy of kill ring as vector of strings
std::vector<wcstring> kill_entries();
#endif