Jump to content

Recommended Posts

Posted

Found a very bad thing:

Alt+I (Open Include) don't work for includes that are located in the User Includes Directory (configured using Scite Config)

Is there a way to get it work???

Posted

Scite Config is for the build process only. For the Open Include functionality, you have to edit your SciTEUser.properties file with something like this:

openpath.$(au3)=$(SciteDefaultHome)..include;$(SciteUserHome)user_include
openpath.beta.$(au3)=$(SciteDefaultHome)..betainclude;$(SciteUserHome)user_include
  • 3 weeks later...
Posted

No immediate problems as of yet and I've been using it all day. I did notice that you can now save a blank AutoIt file whereas before you would have to type at least 1 character to save the file, I honestly didn't realise this was a bug as I with most things I just learn to live with it.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

  • Developers
Posted

  On 3/4/2012 at 8:27 PM, 'guinness said:

No immediate problems as of yet and I've been using it all day. I did notice that you can now save a blank AutoIt file whereas before you would have to type at least 1 character to save the file, I honestly didn't realise this was a bug as I with most things I just learn to live with it.

It's a feature request that was implemented according the Change log:

  Quote

SciTE allows saving file even when file unchanged. Feature #3486654.

Jos :oops:

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

Thanks. Look forward to the next version of SciTE4AutoIt3 :oops:

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

  • Developers
Posted

Still going through some changes in SciTEConfig and the whole setup to avoid storing updates into au3,properties, but using SciTEUser.properties.

Will also discontinue some tools that aren't maintained anymore like FuncPopUp and AutoItMacroGenerator, but will add Melba's Abbrev and Calltips manager scripts.

Melba is also doing a rewrite of the helpfile.

Not sure on any ETA, but will make a RC available when we are done.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

  • Developers
Posted

Have you added the required keywords to your SciTEUser.properties?

highlight.current.word=1
highlight.current.word.by.style=1
highlight.current.word.colour=#00D040
highlight.current.word.autoselectword=0
highlight.current.word.wholeword=0
highlight.current.word.matchcase=0
highlight.current.word.minlength=3

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

  • 4 weeks later...
Posted (edited)

Jos,

Is there an easy way to send a scite extension or director command straight from a proprty file command definition? I tried the following without success.

# 47 Clear error/warning annotations
command.name.47.$(au3)=Clear Annotations
command.mode.47.$(au3)=subsystem:director
command.shortcut.47.$(au3)=Ctrl+Alt+F4
command.47.$(au3)=extender:dostring scite.SendEditor(SCI_ANNOTATIONCLEARALL)

Additionally to that, is there somewhere outside of the scite source that I can find the menucommand ID's? For example you use menucommand:306 for IDM_NEXTMSG.

Ultimately I was hoping to either be able to execute a director command or menucommand straight from my SciTEUser.properties file. As it stands now, I just added a custom lua tool for the above, but it would be cleaner if I didn't have to go that far. It's kind of annoying at the moment to have to use Search -> Clear All Bookmarks to clear the inline errors / warnings (unless there's an easier way to do this that I've missed).

Edited by wraithdu
  • Moderators
Posted

Jos,

command.name.47.*.au3=Clear Annotations
command.47.$(au3)=dostring scite.SendEditor(SCI_ANNOTATIONCLEARALL)
command.shortcut.47.*.au3=Alt+F6


>dostring scite.SendEditor(SCI_ANNOTATIONCLEARALL)
'dostring' is not recognized as an internal or external command,
operable program or batch file.
>Exit code: 1    Time: 3.143

:oops:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

  • Moderators
Posted

Jos,

I have now. :oops:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

  On 3/30/2012 at 4:50 PM, 'Jos said:

Should work, Try:

command.47.$(au3)=dostring scite.SendEditor(SCI_ANNOTATIONCLEARALL)

:oops:

Haha, so close but so far. Awesome :bye:
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...