HEADS-project / heads_ide

http://heads-project.eu
9 stars 2 forks source link

Auto completion does not work in Action Block of State #14

Open kehusa opened 9 years ago

kehusa commented 9 years ago

Trying to press ctrl+space after "tim" does not bring up any alternatives. Works elsewhere in the code, e.g. after event keyword.

state Init { on entry do tim(ctrl+space here)
end

        transition -> Init
        event timer?timer_timeout
        action do
            print "Hello World!\n"
        end

    }