view_selprev(win_view(FOCUSED));
}
-static void change_focus(char* arg) {
- (void)arg;
- win_togglefocus();
-}
-
static void undo(char* arg) {
(void)arg;
view_undo(win_view(FOCUSED));
view_redo(win_view(FOCUSED));
}
+/* Keyboard and Tag Handlers
+ ******************************************************************************/
+static void change_focus(char* arg) {
+ (void)arg;
+ win_togglefocus();
+}
+
static void quit(char* arg) {
(void)arg;
win_quit();
}
-/* Keyboard and Tag Handlers
- ******************************************************************************/
-
static void put(char* arg) {
Buf* buf = win_buf(EDIT);
if (buf_save(buf, arg) == NORMAL) {