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

Drop rest of word to the right of cursor when autocompleting (do we

need a pref for this?).



git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3803 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 2edecade
2009-05-19 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/editor.c:
Drop rest of word to the right of cursor when autocompleting (do we
need a pref for this?).
2009-05-18 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/sciwrappers.c, src/sciwrappers.h, src/editor.c:
......
......@@ -4282,6 +4282,7 @@ static ScintillaObject *create_new_sci(GeanyEditor *editor)
sci_set_caret_policy_x(sci, CARET_JUMPS | CARET_EVEN, 0);
/*sci_set_caret_policy_y(sci, CARET_JUMPS | CARET_EVEN, 0);*/
SSM(sci, SCI_AUTOCSETSEPARATOR, '\n', 0);
SSM(sci, SCI_AUTOCSETDROPRESTOFWORD, TRUE, 0);
SSM(sci, SCI_SETSCROLLWIDTHTRACKING, 1, 0);
/* only connect signals if this is for the document notebook, not split window */
......
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