Exemplo n.º 1
0
        private int GetPreviousOffset(ITextSnapshotLine prevLine)
        {
            return(_options == null?prevLine.GetColumnOfFirstNonWhitespaceCharacterOrEndOfLine(_tabSize) :
                       prevLine.GetColumnOfFirstNonWhitespaceCharacterOrEndOfLine(_options));

            //return isEmpty ? 0 : prevLine.Length - 1;
        }
Exemplo n.º 2
0
 public static int GetColumnOfFirstNonWhitespaceCharacterOrEndOfLine(this ITextSnapshotLine line, IEditorOptions editorOptions)
 {
     return(line.GetColumnOfFirstNonWhitespaceCharacterOrEndOfLine(editorOptions.GetTabSize()));
 }