|
@@ -26,6 +26,8 @@ void keybind_toggle_fps(struct app *app, enum keybind_dir dir);
|
|
|
void keybind_mv_cur_edg_buffer(struct app *app, enum keybind_dir dir);
|
|
void keybind_mv_cur_edg_buffer(struct app *app, enum keybind_dir dir);
|
|
|
void keybind_insert_last_pressed_key(struct app *app, enum keybind_dir dir);
|
|
void keybind_insert_last_pressed_key(struct app *app, enum keybind_dir dir);
|
|
|
|
|
|
|
|
|
|
+void keybind_list_buffers(struct app *app, enum keybind_dir dir);
|
|
|
|
|
+
|
|
|
#if defined(KEYBIND_IMP) || defined(IMP)
|
|
#if defined(KEYBIND_IMP) || defined(IMP)
|
|
|
|
|
|
|
|
void
|
|
void
|
|
@@ -267,6 +269,12 @@ keybind_insert_last_pressed_key(struct app *app, enum keybind_dir dir)
|
|
|
app->cbuf->high_col = buffer_calc_cur_col(app->cbuf);
|
|
app->cbuf->high_col = buffer_calc_cur_col(app->cbuf);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+void
|
|
|
|
|
+keybind_list_buffers(struct app *app, enum keybind_dir dir)
|
|
|
|
|
+{
|
|
|
|
|
+ (void) dir;
|
|
|
|
|
+ app->cbuf = app_create_buffer_list(app);
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
#endif /* defined(KEYBIND_IMP) || defined(IMP) */
|
|
#endif /* defined(KEYBIND_IMP) || defined(IMP) */
|
|
|
|
|
|