A couple of small proposals for change
Jos <[email protected]> Tue, 17 Oct 2023 02:34:21 -0700 (PDT)
| Newsgroups | gmane.editors.scite.general |
|---|---|
| Message-ID | <[email protected]> |
Neil,
I like to propose these 2 pretty small changes:
1. Add only line in SciTEWinDlg.cxx which will set the fileextension of a
new file to the one shown in the "save as" file type... currently this is
always empty when not provided in the filename. This is the one line
addition required for that:
330 ofn.lpstrInitialDir = directory.AsInternal();
*+331 ofn.lpstrDefExt = GUI_TEXT("");*
2. Add an property *autocomplete.multi* to trigger the AutoCMulti, which
currently seems only available in lua via editor.AutoCMulti=1
*SciTEProps.cxx:*
1162 const int autoCChooseSingle =
props.GetInt("autocomplete.choose.single");
1163 wEditor.AutoCSetChooseSingle(autoCChooseSingle);
1164
*+1165 Scintilla::MultiAutoComplete autoCMulti =
static_cast<Scintilla::MultiAutoComplete>
(props.GetInt("autocomplete.multi"));+1166
wEditor.AutoCSetMulti(autoCMulti);*
Cheers,
Jos
--
You received this message because you are subscribed to the Google Groups "scite-interest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/scite-interest/c0630db5-360b-48a2-a6ca-a2deb4fd07ban%40googlegroups.com.