Platformio-atom-ide-terminal: Is there a way to change the cursor at the prompt?

Created on 10 May 2017  路  10Comments  路  Source: platformio/platformio-atom-ide-terminal

I'm wondering if there is a way to change the cursor to a vertical line (pipe) instead of the current block. Just as in the preferences in the terminal app in Mac, see below.

Thanks,
Simon

screen shot 2017-05-10 at 7 06 18 am

question workaround posted

Most helpful comment

add to your stylesheet:

.platformio-ide-terminal {
  .cursor-blink {
    .terminal-cursor {
      -webkit-animation: none !important;
      background: red;
      width: 2px; // pipe width
    }
  }
}

remove -webkit-animation line if you want animation.

All 10 comments

I was just wondering the same thing. It would be so cool to be to able to change the cursor type.

Does anybody know how to get a pipe instead of a block?

add to your stylesheet:

.platformio-ide-terminal {
  .cursor-blink {
    .terminal-cursor {
      -webkit-animation: none !important;
      background: red;
      width: 2px; // pipe width
    }
  }
}

remove -webkit-animation line if you want animation.

@chenjau Thanks for the information. It works like charm for me!

Thank you @chenjau, works great!

@chenjau @suryaavala does this still work for you? Mine stopped working after reinstalling Atom and haven't been able to get it to work again...

worked. thanks chenjau.
for dummies like me:

atom
preferences,
open config folder
styles.less
paste the below code at the end... its standalone code...
.platformio-ide-terminal {
.cursor-blink {
.terminal-cursor {
-webkit-animation: none !important;
background: whitesmoke;
width: 1px; // pipe width
}
}
}

worked me.

Greetings!
Is there similar solution to make the cursor 'underline' type?
Tried to add and change 'height' key, with no effect.
Thanks.

@Alexound https://github.com/bus-stop/terminus/issues/59 and also https://github.com/bus-stop/terminus/pull/66 Which I need help with.

also you have x-terminal which supports this via xtermjs

Was this page helpful?
0 / 5 - 0 ratings

Related issues

0ski picture 0ski  路  5Comments

fusion809 picture fusion809  路  3Comments

EdgarUstian picture EdgarUstian  路  4Comments

courthead picture courthead  路  3Comments

hrishikeshac picture hrishikeshac  路  5Comments