aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_cursor_konsole.fish
diff options
context:
space:
mode:
authorGravatar Maxim Gonchar <gmaxfl@gmail.com>2014-01-20 17:03:46 +0400
committerGravatar Maxim Gonchar <gmaxfl@gmail.com>2014-01-20 17:03:46 +0400
commit1514ab8ec5e4d7effe5639bf51b04b1e1f97b1b0 (patch)
tree8966fdde67b605c34746a6083b06bd2af86306dd /share/functions/__fish_cursor_konsole.fish
parent35919000709c00274f2fbb56db2f2924585edd05 (diff)
Retab
Diffstat (limited to 'share/functions/__fish_cursor_konsole.fish')
-rw-r--r--share/functions/__fish_cursor_konsole.fish18
1 files changed, 9 insertions, 9 deletions
diff --git a/share/functions/__fish_cursor_konsole.fish b/share/functions/__fish_cursor_konsole.fish
index 381ff9b9..12d23c69 100644
--- a/share/functions/__fish_cursor_konsole.fish
+++ b/share/functions/__fish_cursor_konsole.fish
@@ -1,11 +1,11 @@
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
+ 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