Poderosa.Terminal.XTerm.GetPrevTabStop(int)

Here are the examples of the csharp api class Poderosa.Terminal.XTerm.GetPrevTabStop(int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: poderosa
Source File: XTerm.cs
View license
private void ProcessBackwardTab(string param) {
            int n = ParseInt(param, 1);

            int t = _manipulator.CaretColumn;
            for (int i = 0; i < n; i++)
                t = GetPrevTabStop(t);
            if (t < 0)
                t = 0;
            _manipulator.CaretColumn = t;
        }