From b1eb01bc0bd79ba3d43defeac3cecbccbf8d8c50 Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Thu, 30 Jul 2009 10:52:04 +0000 Subject: [PATCH] Rename 'Reflow lines/paragraph' to 'Reflow lines/block' because in future using an indent block is more useful e.g. for ChangeLog files. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4044 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- ChangeLog | 10 +++++++++- src/keybindings.c | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1dfb25fe..c8d4666d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-07-30 Nick Treleaven + + * src/keybindings.c: + Rename 'Reflow lines/paragraph' to 'Reflow lines/block' because in + future using an indent block is more useful e.g. for ChangeLog + files. + + 2009-07-29 Nick Treleaven * src/pluginprivate.h, src/utils.h, src/plugindata.h, @@ -24,7 +32,7 @@ * src/pluginprivate.h, src/makefile.win32, src/plugindata.h, src/pluginutils.c, src/plugins.c, src/pluginutils.h, - src/Makefile.am, ChangeLog, wscript: + src/Makefile.am, wscript: Move plugin_* utility functions to pluginutils.c. Add pluginprivate.h. * src/editor.c: diff --git a/src/keybindings.c b/src/keybindings.c index 631df11f..129312cb 100644 --- a/src/keybindings.c +++ b/src/keybindings.c @@ -321,7 +321,7 @@ static void init_default_kb(void) keybindings_set_item(group, GEANY_KEYS_FORMAT_SENDTOVTE, cb_func_format_action, 0, 0, "edit_sendtovte", _("Send Selection to Terminal"), LW(send_selection_to_vte1)); keybindings_set_item(group, GEANY_KEYS_FORMAT_REFLOWPARAGRAPH, cb_func_format_action, - GDK_j, GDK_CONTROL_MASK, "format_reflowparagraph", _("Reflow lines/paragraph"), NULL); + GDK_j, GDK_CONTROL_MASK, "format_reflowparagraph", _("Reflow lines/block"), NULL); group = ADD_KB_GROUP(INSERT, _("Insert"));