mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 10:12:34 -05:00
Refresh master with initial release/0.24 snapshot (#332)
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
This commit is contained in:
@@ -100,8 +100,8 @@ export class CharacterHardWrappingLineMapperFactory implements ILineMapperFactor
|
||||
wrappedTextIndent += '\t';
|
||||
wrappedTextIndentVisibleColumn = CharacterHardWrappingLineMapperFactory.nextVisibleColumn(wrappedTextIndentVisibleColumn, tabSize, true, 1);
|
||||
}
|
||||
// Force sticking to beginning of line if indentColumn > 66% breakingColumn
|
||||
if (wrappedTextIndentVisibleColumn > 1 / 2 * breakingColumn) {
|
||||
// Force sticking to beginning of line if no character would fit except for the indentation
|
||||
if (wrappedTextIndentVisibleColumn + columnsForFullWidthChar > breakingColumn) {
|
||||
wrappedTextIndent = '';
|
||||
wrappedTextIndentVisibleColumn = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user