Forum
    • Categories
    • Register
    • Login

    Possible to add more colouring options in script editor?

    Scheduled Pinned Locked Moved Feature Requests
    1 Posts 1 Posters 17 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • observantsoundO
      observantsound
      last edited by

      I've found that I really appreciate good use of colour in a script editor or IDE!
      It makes it 10 times easier to read for my brain.

      Sadly the HISE script editor doesn't color functions or namespaces, even though the code preview option in this forum does color functions.
      Would it be possible to add this feature? Or is this something I can do myself?
      I've read that this is actually not that easy to do, and there might be real technical limitations, but I don't know for sure how it works.

      There's also no HISE extension for Visual Studio Code right?

      namespace MyNameSpace
      {
      	var variable;
      }
      
      // --- Target ComboBox ---
      // Only testing Filter for now
      inline function onTargetBox(component, value)
      {
      	if (value <= 1) 	 // Disconnect MM_Filter if "None" option is selected
      	{MM.connect("LFO Modulator", "MM_Filter", false);}
      	
      	else if (value == 2) // Connect MM_Filter if "Filter" option is selected	
      	{MM.connect("LFO Modulator", "MM_Filter", true);}
      }
      cmbTarget.setControlCallback(onTargetBox);
      MyNameSpace.variable = 1;
      
      1 Reply Last reply Reply Quote 0
      • First post
        Last post

      19

      Online

      2.5k

      Users

      13.9k

      Topics

      120.9k

      Posts