Boo.BooLangService.HandleSmartIndentAction.Execute C# (CSharp) Method

Execute() public method

public Execute ( ) : bool
return bool
        public bool Execute()
        {
            int line, col;

            view.GetCaretPos(out line, out col);

            indenter.SetIndentationForNextLine(line);

            return false;
        }
HandleSmartIndentAction