mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 21:43:55 +08:00
42d674819f
Now that the kill ring may be accessed on a background thread, ensure it is thread safe.
62 lines
1.4 KiB
C++
62 lines
1.4 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 "kill.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <algorithm>
|
|
#include <list>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "common.h"
|
|
#include "fallback.h" // IWYU pragma: keep
|
|
|
|
/** Kill ring */
|
|
static owning_lock<std::list<wcstring>> s_kill_list;
|
|
|
|
void kill_add(wcstring str) {
|
|
if (!str.empty()) {
|
|
s_kill_list.acquire()->push_front(std::move(str));
|
|
}
|
|
}
|
|
|
|
void kill_replace(const wcstring &old, const wcstring &newv) {
|
|
auto kill_list = s_kill_list.acquire();
|
|
// Remove old.
|
|
auto iter = std::find(kill_list->begin(), kill_list->end(), old);
|
|
if (iter != kill_list->end()) kill_list->erase(iter);
|
|
|
|
// Add new.
|
|
if (!newv.empty()) {
|
|
kill_list->push_front(newv);
|
|
}
|
|
}
|
|
|
|
wcstring kill_yank_rotate() {
|
|
auto kill_list = s_kill_list.acquire();
|
|
// 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() {
|
|
auto kill_list = s_kill_list.acquire();
|
|
if (kill_list->empty()) {
|
|
return {};
|
|
}
|
|
return kill_list->front();
|
|
}
|
|
|
|
wcstring_list_t kill_entries() {
|
|
auto kill_list = s_kill_list.acquire();
|
|
return wcstring_list_t{kill_list->begin(), kill_list->end()};
|
|
}
|