aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/kill.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kill.h')
-rw-r--r--src/kill.h27
1 files changed, 11 insertions, 16 deletions
diff --git a/src/kill.h b/src/kill.h
index 686122a2..ed0fc112 100644
--- a/src/kill.h
+++ b/src/kill.h
@@ -1,36 +1,31 @@
-/** \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.
-*/
-
+// 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 "common.h"
-/**
- Replace the specified string in the killring
-*/
+/// 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 */
+/// Add a string to the top of the killring.
void kill_add(const wcstring &str);
-/** Rotate the killring */
+/// Rotate the killring.
const wchar_t *kill_yank_rotate();
-/** Paste from the killring */
+/// Paste from the killring.
const wchar_t *kill_yank();
-/** Sanity check */
+/// Sanity check.
void kill_sanity_check();
-/** Initialize the killring */
+/// Initialize the killring.
void kill_init();
-/** Destroy the killring */
+/// Destroy the killring.
void kill_destroy();
#endif