Kaydet (Commit) d3489262 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix inserting spaces instead of tab when using 'Suppress construct

completion' and spaces are used for indentation.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1933 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 2eaa1d8d
2007-10-09 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/keybindings.c:
Fix inserting spaces instead of tab when using 'Suppress construct
completion' and spaces are used for indentation.
2007-10-08 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* src/callbacks.c, src/keybindings.c:
......
......@@ -1266,7 +1266,7 @@ static void cb_func_edit(guint key_id)
sci_add_text(doc_list[idx].sci, " ");
break;
case GDK_Tab:
sci_add_text(doc_list[idx].sci, "\t");
sci_cmd(doc_list[idx].sci, SCI_TAB);
break;
default:
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment