rctay / sublime-text-buildview

A Sublime Text plugin to show build output in a view.
MIT License
67 stars 7 forks source link

How to make the build not read-only? #24

Closed evandrocoan closed 7 years ago

evandrocoan commented 8 years ago

How to make the build panel {"panel": "output.exec"} not read-only?

Is there a option to accomplish so?

rctay commented 8 years ago

Hey, are you referring to the view that my plugin opens, or the default build panel that sublime shows when you run builds?

evandrocoan commented 8 years ago

The view sublime opens when is run:

   { "keys": ["f7"], "command": "build" }

If I recall correctly, when I did not have this plugin, that view was editable.

image

rctay commented 8 years ago

Oh, I didn't know you could do that. I was able to enter text though. What version of sublime are you using?

evandrocoan commented 8 years ago

Now I am using now 3126 x86 Windows 10. I just delete my data and tried to compile something and id worked, I could edit the output panel. This is my full install, if you want to try: https://github.com/evandrocoan/SublimeTextStudio

image

rctay commented 7 years ago

If I understand your reply correctly, the behaviour described doesn't occur anymore. Hence closing, reopen if I was mistaken.

evandrocoan commented 7 years ago

Sorry, looks like I posted it on the wrong plugin. It is the https://github.com/aziz/SublimeANSI, which is doing the output panel to be read-only, when I am setting the target build as ansi_color_build on my .sublime-build file:

    "build_systems":
    [
        {
            "working_dir": "$project_path/installers",

            "name": "Galileo Installer",
            "cmd": ["galileo.bat", "$project_path/plugins/addons/amxmodx/scripting/galileo.sma", "galileo", "$packages"],

            "target": "ansi_color_build",
            "syntax": "Packages/ANSIescape/ANSI.tmLanguage",
        },
    ]