Make Ctrl-click working again to create rectangular selections when no braces and valid definitions are below the cursor (to whose would be jumped then).
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3392 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
44b7d27b50
commit
ae35f40e6e
@ -12,6 +12,10 @@
|
|||||||
Add "editor-notify" to the plugin API.
|
Add "editor-notify" to the plugin API.
|
||||||
This signal is emitted whenever something in an editor widget
|
This signal is emitted whenever something in an editor widget
|
||||||
changes, e.g. a character was typed.
|
changes, e.g. a character was typed.
|
||||||
|
* src/editor.c:
|
||||||
|
Make Ctrl-click working again to create rectangular selections when
|
||||||
|
no braces and valid definitions are below the cursor (to whose would
|
||||||
|
be jumped then).
|
||||||
|
|
||||||
|
|
||||||
2008-12-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2008-12-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||||
|
@ -207,7 +207,7 @@ on_editor_button_press_event (GtkWidget *widget,
|
|||||||
editor_find_current_word(editor, editor_info.click_pos,
|
editor_find_current_word(editor, editor_info.click_pos,
|
||||||
current_word, sizeof current_word, NULL);
|
current_word, sizeof current_word, NULL);
|
||||||
if (*current_word)
|
if (*current_word)
|
||||||
symbols_goto_tag(current_word, TRUE);
|
return symbols_goto_tag(current_word, TRUE);
|
||||||
else
|
else
|
||||||
keybindings_send_command(GEANY_KEY_GROUP_GOTO, GEANY_KEYS_GOTO_MATCHINGBRACE);
|
keybindings_send_command(GEANY_KEY_GROUP_GOTO, GEANY_KEYS_GOTO_MATCHINGBRACE);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user