mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
16 lines
283 B
C++
16 lines
283 B
C++
#ifndef FISH_KILL_H
|
|
#define FISH_KILL_H
|
|
|
|
#include "common.h"
|
|
#include "kill.rs.h"
|
|
|
|
/// Rotate the killring.
|
|
wcstring kill_yank_rotate();
|
|
|
|
/// Paste from the killring.
|
|
wcstring kill_yank();
|
|
|
|
/// Get copy of kill ring as vector of strings
|
|
std::vector<wcstring> kill_entries();
|
|
|
|
#endif
|