mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-08 03:24:04 +08:00
This `terminal-cursor-blink-rate` key can be used to enable terminal cursor blinking. The user can set an int value between `100` and `2000` which will be used as blink rate in millisecond. The default value is `0`, which disables cursor blinking. So adding an entry like `terminal-cursor-blink-rate=600` to `~/termux.properties` file will make the cursor attempt to blink every 600ms. Running `termux-reload-settings` command will also update the cursor blinking rate instantaneously if changed. A background thread is used to control the blinking by toggling the cursor visibility and then invalidating the view every x milliseconds set. This will have a performance impact, so use wisely and at your own risk. If the cursor itself is disabled, which is controlled by whether DECSET_BIT_CURSOR_ENABLED (DECSET 25, DECTCEM), then blinking will be automatically disabled. You can enable the cursor with `tput cnorm` or `echo -e '\e[?25h'` and disable it with `tput civis` or `echo -e '\e[?25l'`. Note that you can also change the cursor color by adding `cursor` property to `~/colors.properties` file, like `cursor=#FFFFFF` for a white cursor. The `TermuxPropertyConstants` class has been updated to `v0.9.0`. Check its Changelog sections for info on changes. Closes #153
79 lines
2.9 KiB
Java
79 lines
2.9 KiB
Java
package com.termux.terminal;
|
|
|
|
/**
|
|
* <pre>
|
|
* "CSI ? Pm h", DEC Private Mode Set (DECSET)
|
|
* </pre>
|
|
* <p/>
|
|
* and
|
|
* <p/>
|
|
* <pre>
|
|
* "CSI ? Pm l", DEC Private Mode Reset (DECRST)
|
|
* </pre>
|
|
* <p/>
|
|
* controls various aspects of the terminal
|
|
*/
|
|
public class DecSetTest extends TerminalTestCase {
|
|
|
|
/** DECSET 25, DECTCEM, controls visibility of the cursor. */
|
|
public void testEnableDisableCursor() {
|
|
withTerminalSized(3, 3);
|
|
assertTrue("Initially the cursor should be enabled", mTerminal.isCursorEnabled());
|
|
enterString("\033[?25l"); // Disable Cursor (DECTCEM).
|
|
assertFalse(mTerminal.isCursorEnabled());
|
|
enterString("\033[?25h"); // Enable Cursor (DECTCEM).
|
|
assertTrue(mTerminal.isCursorEnabled());
|
|
|
|
enterString("\033[?25l"); // Disable Cursor (DECTCEM), again.
|
|
assertFalse(mTerminal.isCursorEnabled());
|
|
mTerminal.reset();
|
|
assertTrue("Resetting the terminal should enable the cursor", mTerminal.isCursorEnabled());
|
|
|
|
enterString("\033[?25l");
|
|
assertFalse(mTerminal.isCursorEnabled());
|
|
enterString("\033c"); // RIS resetting should enabled cursor.
|
|
assertTrue(mTerminal.isCursorEnabled());
|
|
}
|
|
|
|
/** DECSET 2004, controls bracketed paste mode. */
|
|
public void testBracketedPasteMode() {
|
|
withTerminalSized(3, 3);
|
|
|
|
mTerminal.paste("a");
|
|
assertEquals("Pasting 'a' should output 'a' when bracketed paste mode is disabled", "a", mOutput.getOutputAndClear());
|
|
|
|
enterString("\033[?2004h"); // Enable bracketed paste mode.
|
|
mTerminal.paste("a");
|
|
assertEquals("Pasting when in bracketed paste mode should be bracketed", "\033[200~a\033[201~", mOutput.getOutputAndClear());
|
|
|
|
enterString("\033[?2004l"); // Disable bracketed paste mode.
|
|
mTerminal.paste("a");
|
|
assertEquals("Pasting 'a' should output 'a' when bracketed paste mode is disabled", "a", mOutput.getOutputAndClear());
|
|
|
|
enterString("\033[?2004h"); // Enable bracketed paste mode, again.
|
|
mTerminal.paste("a");
|
|
assertEquals("Pasting when in bracketed paste mode again should be bracketed", "\033[200~a\033[201~", mOutput.getOutputAndClear());
|
|
|
|
mTerminal.paste("\033ab\033cd\033");
|
|
assertEquals("Pasting an escape character should not input it", "\033[200~abcd\033[201~", mOutput.getOutputAndClear());
|
|
mTerminal.paste("\u0081ab\u0081cd\u009F");
|
|
assertEquals("Pasting C1 control codes should not input it", "\033[200~abcd\033[201~", mOutput.getOutputAndClear());
|
|
|
|
mTerminal.reset();
|
|
mTerminal.paste("a");
|
|
assertEquals("Terminal reset() should disable bracketed paste mode", "a", mOutput.getOutputAndClear());
|
|
}
|
|
|
|
/** DECSET 7, DECAWM, controls wraparound mode. */
|
|
public void testWrapAroundMode() {
|
|
// Default with wraparound:
|
|
withTerminalSized(3, 3).enterString("abcd").assertLinesAre("abc", "d ", " ");
|
|
// With wraparound disabled:
|
|
withTerminalSized(3, 3).enterString("\033[?7labcd").assertLinesAre("abd", " ", " ");
|
|
enterString("efg").assertLinesAre("abg", " ", " ");
|
|
// Re-enabling wraparound:
|
|
enterString("\033[?7hhij").assertLinesAre("abh", "ij ", " ");
|
|
}
|
|
|
|
}
|