mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-30 06:03:49 +08:00
82eca4bc86
The main change here is to reorder headers.
56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
// The killring.
|
|
//
|
|
// Works like the killring in emacs and readline. The killring is cut and paste with a memory of
|
|
// previous cuts.
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <algorithm>
|
|
#include <list>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "common.h"
|
|
#include "fallback.h" // IWYU pragma: keep
|
|
|
|
/** Kill ring */
|
|
typedef std::list<wcstring> kill_list_t;
|
|
static kill_list_t kill_list;
|
|
|
|
void kill_add(wcstring str) {
|
|
ASSERT_IS_MAIN_THREAD();
|
|
if (!str.empty()) {
|
|
kill_list.push_front(std::move(str));
|
|
}
|
|
}
|
|
|
|
/// Remove first match for specified string from circular list.
|
|
static void kill_remove(const wcstring &s) {
|
|
ASSERT_IS_MAIN_THREAD();
|
|
auto iter = std::find(kill_list.begin(), kill_list.end(), s);
|
|
if (iter != kill_list.end()) kill_list.erase(iter);
|
|
}
|
|
|
|
void kill_replace(const wcstring &old, const wcstring &newv) {
|
|
kill_remove(old);
|
|
kill_add(newv);
|
|
}
|
|
|
|
wcstring kill_yank_rotate() {
|
|
ASSERT_IS_MAIN_THREAD();
|
|
// Move the first element to the end.
|
|
if (kill_list.empty()) {
|
|
return {};
|
|
}
|
|
kill_list.splice(kill_list.end(), kill_list, kill_list.begin());
|
|
return kill_list.front();
|
|
}
|
|
|
|
wcstring kill_yank() {
|
|
if (kill_list.empty()) {
|
|
return {};
|
|
}
|
|
return kill_list.front();
|
|
}
|