How to use the Text function from blessed
Find comprehensive JavaScript blessed.Text code examples handpicked from public code repositorys.
70 71 72 73 74 75 76 77 78 79
style: { fg: '#666' } }) blessed.Text({ parent: consoleContainer, top: '100%-4', height: 1, width: 2,
6
16
2
+ 13 other calls in file
GitHub: thatsmydoing/openpreppad
31 32 33 34 35 36 37 38 39 40
}); container.append(box); screen.append(container); let statusLine = blessed.Text({ bottom: 0, width: '100%', height: 'shrink', content: 'Connecting...',
3
4
3
+ 3 other calls in file
53 54 55 56 57 58 59 60 61 62
width: '50%', height: '20%', top: '5', left: '5' }); outer.prepend(new blessed.Text({left: 2, content: '<esc>|<Ctrl>-save'})) var edit = blessed.Textbox({ fg: 'black', tags: true,
3
0
2
48 49 50 51 52 53 54 55 56 57
})); // draw UI consoleBox(screen); const title = new Text({ left: 0, top: 0, content: `mspaint`, content: require('./ascii-logo')(),
2
8
0
+ 2 other calls in file
GitHub: jfedyczak/owonb35
81 82 83 84 85 86 87 88 89 90
style: { fg: colorActive } }) let displayPrefix = blessed.Text({ parent: display, top: 11, left: 51, content: '-',
0
2
2
+ 19 other calls in file
GitHub: santinic/how2
67 68 69 70 71 72 73 74 75 76
_.extend(options, listStyle()) googleList = blessed.list(options) googleList.setItems(titles) googleList.prepend(new blessed.Text({ content: 'Select one code tip:' })) googleList.on('select', function (_) { callback(this.selected) })
177
0
62
GitHub: ssaurab/how2
74 75 76 77 78 79 80 81 82 83
_.extend(options, listStyle()); googleList = blessed.list(options); googleList.setItems(titles); googleList.prepend(new blessed.Text({content: 'Select one code tip:'})); googleList.on('select', function (_) { callback(this.selected); });
0
0
1
+ 3 other calls in file
42 43 44 45 46 47 48 49 50 51 52
} } }); // Username field label let usernameText = blessed.Text( { parent: usernameForm, top: '15%', left: 0,
0
0
0
+ 5 other calls in file
blessed.box is the most popular function in blessed (4356 examples)