2016-05-02 13:16:00 +08:00
|
|
|
// The killring.
|
|
|
|
//
|
|
|
|
// Works like the killring in emacs and readline. The killring is cut and paste with a memory of
|
2016-05-13 21:02:28 +08:00
|
|
|
// previous cuts.
|
2016-05-19 06:30:21 +08:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2020-09-09 04:04:44 +08:00
|
|
|
#include "kill.h"
|
|
|
|
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <stddef.h>
|
2019-10-14 06:50:48 +08:00
|
|
|
|
2012-03-04 19:27:41 +08:00
|
|
|
#include <algorithm>
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <list>
|
2016-04-21 14:00:54 +08:00
|
|
|
#include <memory>
|
2016-05-02 13:16:00 +08:00
|
|
|
#include <string>
|
2005-09-20 21:26:39 +08:00
|
|
|
|
|
|
|
#include "common.h"
|
2016-05-02 13:16:00 +08:00
|
|
|
#include "fallback.h" // IWYU pragma: keep
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2012-03-04 11:37:55 +08:00
|
|
|
/** Kill ring */
|
2021-04-22 08:37:44 +08:00
|
|
|
static owning_lock<std::list<wcstring>> s_kill_list;
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2019-03-17 08:26:42 +08:00
|
|
|
void kill_add(wcstring str) {
|
|
|
|
if (!str.empty()) {
|
2021-04-22 08:37:44 +08:00
|
|
|
s_kill_list.acquire()->push_front(std::move(str));
|
2019-03-17 08:26:42 +08:00
|
|
|
}
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 13:16:00 +08:00
|
|
|
void kill_replace(const wcstring &old, const wcstring &newv) {
|
2021-04-22 08:37:44 +08:00
|
|
|
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);
|
|
|
|
}
|
2006-10-12 21:27:32 +08:00
|
|
|
}
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2019-03-17 08:26:42 +08:00
|
|
|
wcstring kill_yank_rotate() {
|
2021-04-22 08:37:44 +08:00
|
|
|
auto kill_list = s_kill_list.acquire();
|
2016-05-02 13:16:00 +08:00
|
|
|
// Move the first element to the end.
|
2021-04-22 08:37:44 +08:00
|
|
|
if (kill_list->empty()) {
|
2019-03-17 08:26:42 +08:00
|
|
|
return {};
|
2012-03-04 13:46:06 +08:00
|
|
|
}
|
2021-04-22 08:37:44 +08:00
|
|
|
kill_list->splice(kill_list->end(), *kill_list, kill_list->begin());
|
|
|
|
return kill_list->front();
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
|
|
|
|
2019-03-17 08:26:42 +08:00
|
|
|
wcstring kill_yank() {
|
2021-04-22 08:37:44 +08:00
|
|
|
auto kill_list = s_kill_list.acquire();
|
|
|
|
if (kill_list->empty()) {
|
2019-03-17 08:26:42 +08:00
|
|
|
return {};
|
2012-03-04 13:46:06 +08:00
|
|
|
}
|
2021-04-22 08:37:44 +08:00
|
|
|
return kill_list->front();
|
2005-09-20 21:26:39 +08:00
|
|
|
}
|
2021-04-10 03:08:56 +08:00
|
|
|
|
|
|
|
wcstring_list_t kill_entries() {
|
2021-04-22 08:37:44 +08:00
|
|
|
auto kill_list = s_kill_list.acquire();
|
|
|
|
return wcstring_list_t{kill_list->begin(), kill_list->end()};
|
2021-04-11 05:36:21 +08:00
|
|
|
}
|