repo.or.cz
/
shlib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
code repo connnect test
[shlib.git]
/
trash
/
term.shlib
blob
55d57e0d213872078ab1133050186f5c12d8944d
1
2
#
3
# fsyntax: term_get_tab_size
4
# fdesc: get blank count of a tab.
5
#
6
term_get_tab_size ()
7
{
8
[[ $1 -lt 0 || $1 -gt 3 ]] && return
9
tput tab$1
10
}
11
12
#
13
# fsyntax: term_set_tab_size
14
# fdesc: set blank count of a tab.
15
#
16
term_set_tab_size ()
17
{
18
tput cols
19
tput rows
20
}
21
22
23
24
#
25
#
26
set_alian ()
27
{
28
# todoļ¼
29
return
30
}
31