Projects STRLCPY termdash Commits 85b31891
🤬
  • Revert "Merge pull request #1 from infinytum/issue-81"

    This reverts commit 93423a8e8b61c0b3e807c8614805e26211ff5066, reversing
    changes made to 02bb0d1312b842721e4b7d111018ff8886f977fe.
  • Loading...
  • Michael Teuscher committed 5 years ago
    85b31891
    1 parent 93423a8e
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    draw/line_style.go
    skipped 38 lines
    39 39   vAndRight: '├',
    40 40   vAndH: '┼',
    41 41   },
    42  - LineStyleDouble: {
    43  - hLine: '═',
    44  - vLine: '║',
    45  - topLeftCorner: '╔',
    46  - topRightCorner: '╗',
    47  - bottomLeftCorner: '╚',
    48  - bottomRightCorner: '╝',
    49  - hAndUp: '╩',
    50  - hAndDown: '╦',
    51  - vAndLeft: '╣',
    52  - vAndRight: '╠',
    53  - vAndH: '╬',
    54  - },
    55 42  }
    56 43   
    57 44  // init verifies that all line parts are half-width runes (occupy only one
    skipped 30 lines
    88 75   
    89 76  // lineStyleNames maps LineStyle values to human readable names.
    90 77  var lineStyleNames = map[LineStyle]string{
    91  - LineStyleLight: "LineStyleLight",
    92  - LineStyleDouble: "LineStyleDouble",
     78 + LineStyleLight: "LineStyleLight",
    93 79  }
    94 80   
    95 81  // Supported line styles.
    96 82  const (
    97 83   LineStyleNone LineStyle = iota
    98 84   LineStyleLight
    99  - LineStyleDouble
    100 85  )
    101 86   
    102 87  // linePart identifies individual line parts.
    skipped 38 lines
Please wait...
Page is in error, reload to recover