Hi,

> Hello, two things, I would like to know! ;)
>
> 1)
> a) Is it possible to only bind lua scripts to keyboard shortcuts without showing them in the
>      SciTE tools menu? (I didn't accomplish that).
Not in the current SciTE implementation, but you can with my keys.lua implementation (utilizes a new OnKey Lua extension):
        http://caladbolg.net/scite.php#keys

> b) Is it somehow possible to use another menu (not tools for a lua script?
No

>
> 2) Show user list:
> Is it possible to have the listbox bigger and center it in the middle of the editing area or at the top? You can make it bigger by setting the AutoCMaxHeight and AutoCMaxWidth properties. By default I believe the listbox is displayed at the cursor position and cannot be put elsewhere.

>    What properties can I control in the UserList?
In src/scintilla/include/Scintilla.iface:

  fun void AutoCShow=2100(int lenEntered, string itemList)
  fun void AutoCCancel=2101(,)
  fun bool AutoCActive=2102(,)
  fun position AutoCPosStart=2103(,)
  fun void AutoCComplete=2104(,)
  fun void AutoCStops=2105(, string characterSet)
  set void AutoCSetSeparator=2106(int separatorCharacter,)
  get int AutoCGetSeparator=2107(,)
  fun void AutoCSelect=2108(, string text)
  set void AutoCSetCancelAtStart=2110(bool cancel,)
  get bool AutoCGetCancelAtStart=2111(,)
  set void AutoCSetFillUps=2112(, string characterSet)
  set void AutoCSetChooseSingle=2113(bool chooseSingle,)
  get bool AutoCGetChooseSingle=2114(,)
  set void AutoCSetIgnoreCase=2115(bool ignoreCase,)
  get bool AutoCGetIgnoreCase=2116(,)
  fun void UserListShow=2117(int listType, string itemList)
  set void AutoCSetAutoHide=2118(bool autoHide,)
  get bool AutoCGetAutoHide=2119(,)
  set void AutoCSetDropRestOfWord=2270(bool dropRestOfWord,)
  get bool AutoCGetDropRestOfWord=2271(,)
  get int AutoCGetTypeSeparator=2285(,)
  set void AutoCSetTypeSeparator=2286(int separatorCharacter,)
  set void AutoCSetMaxWidth=2208(int characterCount,)
  get int AutoCGetMaxWidth=2209(,)
  set void AutoCSetMaxHeight=2210(int rowCount,)
  get int AutoCGetMaxHeight=2211(,)

Take care,
-Mitchell;

>
>

_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to