Re: Adding /* */ to Geany
- Posted by K_D_R Aug 05, 2013
- 2426 views
euphoric said...
Can someone explain how to enable Geany to recognize the multi-line comment brackets (/* */) in Euphoria code?
Thanks!
-- in filetypes.euphoria or filetypes.lua, set: comment_open=/* comment_close=*/ -- unfortunately, I think you can have to use either the double dash, -- "Euphoria Classic" method, comment_open = -- -- in which case you leave the comment_close assignment blank: comment_close = or comment_open=/* comment_close =*/
Hope this helps.
Ken