We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd95ce commit c7f0716Copy full SHA for c7f0716
crates/alacritty_terminal/src/term/mod.rs
@@ -834,7 +834,6 @@ impl<T> Term<T> {
834
835
// Add work around for emojis
836
if let Ok(cursor_offset) = std::env::var("Q_PROMPT_OFFSET_WORKAROUND") {
837
- // ALLOWED: alacritty_terminal doesn't have fig_os_shim dependency
838
if let Ok(offset) = cursor_offset.parse::<i32>() {
839
self.shell_state.cmd_cursor = self.shell_state.cmd_cursor.map(|cursor| Point {
840
column: Column((cursor.column.0 as i32 - offset).max(0) as usize),
0 commit comments