fish-shell/share/functions/__fish_cursor_konsole.fish
2014-01-20 21:28:54 +04:00

11 lines
278 B
Fish

function __fish_cursor_konsole -d 'Set cursor (konsole)'
set -l shape $argv[1]
switch "$shape"
case block
echo -en '\e]50;CursorShape=0\x7'
case underscore
echo -en '\e]50;CursorShape=2\x7'
case line
echo -en '\e]50;CursorShape=1\x7'
end
end