From b4f53143b0e05fd3061cdf2e65e17a6a2904090b Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Fri, 24 Jul 2015 00:50:58 -0700 Subject: Migrate source files into src/ directory This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866 --- src/kill.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/kill.h (limited to 'src/kill.h') diff --git a/src/kill.h b/src/kill.h new file mode 100644 index 00000000..35df3dbd --- /dev/null +++ b/src/kill.h @@ -0,0 +1,36 @@ +/** \file kill.h + Prototypes for the killring. + + Works like the killring in emacs and readline. The killring is cut and paste whith a memory of previous cuts. +*/ + +#ifndef FISH_KILL_H +#define FISH_KILL_H + +#include + +/** + Replace the specified string in the killring +*/ +void kill_replace(const wcstring &old, const wcstring &newv); + + +/** Add a string to the top of the killring */ +void kill_add(const wcstring &str); + +/** Rotate the killring */ +const wchar_t *kill_yank_rotate(); + +/** Paste from the killring */ +const wchar_t *kill_yank(); + +/** Sanity check */ +void kill_sanity_check(); + +/** Initialize the killring */ +void kill_init(); + +/** Destroy the killring */ +void kill_destroy(); + +#endif -- cgit v1.2.3