termites 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server.js +5 -1
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -728,6 +728,8 @@ class TermitesServer {
|
|
|
728
728
|
<button data-key="ArrowDown">↓</button>
|
|
729
729
|
<div class="sep"></div>
|
|
730
730
|
<button data-seq="/">/</button>
|
|
731
|
+
<button data-seq="[">[</button>
|
|
732
|
+
<button data-seq="]">]</button>
|
|
731
733
|
<button id="sel-btn" class="mod-btn">Sel</button>
|
|
732
734
|
<button id="copy-btn">Copy</button>
|
|
733
735
|
<button id="paste-btn">Paste</button>
|
|
@@ -1227,7 +1229,9 @@ class TermitesServer {
|
|
|
1227
1229
|
setupMobileToolbar();
|
|
1228
1230
|
term = new Terminal({
|
|
1229
1231
|
theme: themes[currentTheme], fontFamily: currentFont,
|
|
1230
|
-
fontSize: currentFontSize, cursorBlink: true
|
|
1232
|
+
fontSize: currentFontSize, cursorBlink: true,
|
|
1233
|
+
scrollback: 1000,
|
|
1234
|
+
smoothScrollDuration: 100
|
|
1231
1235
|
});
|
|
1232
1236
|
fitAddon = new FitAddon.FitAddon();
|
|
1233
1237
|
term.loadAddon(fitAddon);
|