st 0.8.5 source code
This commit is contained in:
parent
0e2751cec3
commit
c28b3395db
64
Makefile
Normal file
64
Makefile
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
# st - simple terminal
|
||||||
|
# See LICENSE file for copyright and license details.
|
||||||
|
.POSIX:
|
||||||
|
|
||||||
|
include config.mk
|
||||||
|
|
||||||
|
SRC = st.c x.c
|
||||||
|
OBJ = $(SRC:.c=.o)
|
||||||
|
|
||||||
|
all: options st
|
||||||
|
|
||||||
|
options:
|
||||||
|
@echo st build options:
|
||||||
|
@echo "CFLAGS = $(STCFLAGS)"
|
||||||
|
@echo "LDFLAGS = $(STLDFLAGS)"
|
||||||
|
@echo "CC = $(CC)"
|
||||||
|
|
||||||
|
config.h:
|
||||||
|
cp config.def.h config.h
|
||||||
|
|
||||||
|
.c.o:
|
||||||
|
$(CC) $(STCFLAGS) -c $<
|
||||||
|
|
||||||
|
st.o: config.h st.h win.h
|
||||||
|
x.o: arg.h config.h st.h win.h
|
||||||
|
|
||||||
|
$(OBJ): config.h config.mk
|
||||||
|
|
||||||
|
st: $(OBJ)
|
||||||
|
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f st $(OBJ) st-$(VERSION).tar.gz
|
||||||
|
|
||||||
|
dist: clean
|
||||||
|
mkdir -p st-$(VERSION)
|
||||||
|
cp -R FAQ LEGACY TODO LICENSE Makefile README config.mk\
|
||||||
|
config.def.h st.info st.1 arg.h st.h win.h $(SRC)\
|
||||||
|
st-$(VERSION)
|
||||||
|
tar -cf - st-$(VERSION) | gzip > st-$(VERSION).tar.gz
|
||||||
|
rm -rf st-$(VERSION)
|
||||||
|
|
||||||
|
install: st
|
||||||
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
|
mkdir -p $(DESTDIR)$(PREFIX)/share/applications
|
||||||
|
cp -f st $(DESTDIR)$(PREFIX)/bin
|
||||||
|
cp -f st.desktop $(DESTDIR)$(PREFIX)/share/applications
|
||||||
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/st
|
||||||
|
chmod 755 $(DESTDIR)$(PREFIX)/share/applications/st.desktop
|
||||||
|
cp -f st-autocomplete $(DESTDIR)$(PREFIX)/bin
|
||||||
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/st-autocomplete
|
||||||
|
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
|
||||||
|
sed "s/VERSION/$(VERSION)/g" < st.1 > $(DESTDIR)$(MANPREFIX)/man1/st.1
|
||||||
|
chmod 644 $(DESTDIR)$(MANPREFIX)/man1/st.1
|
||||||
|
tic -sx st.info
|
||||||
|
@echo Please see the README file regarding the terminfo entry of st.
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
rm -f $(DESTDIR)$(PREFIX)/bin/st
|
||||||
|
rm -f $(DESTDIR)$(PREFIX)/share/applications/st.desktop
|
||||||
|
rm -f $(DESTDIR)$(PREFIX)/bin/st-autocomplete
|
||||||
|
rm -f $(DESTDIR)$(MANPREFIX)/man1/st.1
|
||||||
|
|
||||||
|
.PHONY: all options clean dist install uninstall
|
28
TODO
Normal file
28
TODO
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
vt emulation
|
||||||
|
------------
|
||||||
|
|
||||||
|
* double-height support
|
||||||
|
|
||||||
|
code & interface
|
||||||
|
----------------
|
||||||
|
|
||||||
|
* add a simple way to do multiplexing
|
||||||
|
|
||||||
|
drawing
|
||||||
|
-------
|
||||||
|
* add diacritics support to xdraws()
|
||||||
|
* switch to a suckless font drawing library
|
||||||
|
* make the font cache simpler
|
||||||
|
* add better support for brightening of the upper colors
|
||||||
|
|
||||||
|
bugs
|
||||||
|
----
|
||||||
|
|
||||||
|
* fix shift up/down (shift selection in emacs)
|
||||||
|
* remove DEC test sequence when appropriate
|
||||||
|
|
||||||
|
misc
|
||||||
|
----
|
||||||
|
|
||||||
|
$ grep -nE 'XXX|TODO' st.c
|
||||||
|
|
50
arg.h
Normal file
50
arg.h
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
/*
|
||||||
|
* Copy me if you can.
|
||||||
|
* by 20h
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef ARG_H__
|
||||||
|
#define ARG_H__
|
||||||
|
|
||||||
|
extern char *argv0;
|
||||||
|
|
||||||
|
/* use main(int argc, char *argv[]) */
|
||||||
|
#define ARGBEGIN for (argv0 = *argv, argv++, argc--;\
|
||||||
|
argv[0] && argv[0][0] == '-'\
|
||||||
|
&& argv[0][1];\
|
||||||
|
argc--, argv++) {\
|
||||||
|
char argc_;\
|
||||||
|
char **argv_;\
|
||||||
|
int brk_;\
|
||||||
|
if (argv[0][1] == '-' && argv[0][2] == '\0') {\
|
||||||
|
argv++;\
|
||||||
|
argc--;\
|
||||||
|
break;\
|
||||||
|
}\
|
||||||
|
int i_;\
|
||||||
|
for (i_ = 1, brk_ = 0, argv_ = argv;\
|
||||||
|
argv[0][i_] && !brk_;\
|
||||||
|
i_++) {\
|
||||||
|
if (argv_ != argv)\
|
||||||
|
break;\
|
||||||
|
argc_ = argv[0][i_];\
|
||||||
|
switch (argc_)
|
||||||
|
|
||||||
|
#define ARGEND }\
|
||||||
|
}
|
||||||
|
|
||||||
|
#define ARGC() argc_
|
||||||
|
|
||||||
|
#define EARGF(x) ((argv[0][i_+1] == '\0' && argv[1] == NULL)?\
|
||||||
|
((x), abort(), (char *)0) :\
|
||||||
|
(brk_ = 1, (argv[0][i_+1] != '\0')?\
|
||||||
|
(&argv[0][i_+1]) :\
|
||||||
|
(argc--, argv++, argv[0])))
|
||||||
|
|
||||||
|
#define ARGF() ((argv[0][i_+1] == '\0' && argv[1] == NULL)?\
|
||||||
|
(char *)0 :\
|
||||||
|
(brk_ = 1, (argv[0][i_+1] != '\0')?\
|
||||||
|
(&argv[0][i_+1]) :\
|
||||||
|
(argc--, argv++, argv[0])))
|
||||||
|
|
||||||
|
#endif
|
16
autocomplete.h
Normal file
16
autocomplete.h
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# ifndef __ST_AUTOCOMPLETE_H
|
||||||
|
# define __ST_AUTOCOMPLETE_H
|
||||||
|
|
||||||
|
enum {
|
||||||
|
ACMPL_DEACTIVATE,
|
||||||
|
ACMPL_WORD,
|
||||||
|
ACMPL_WWORD,
|
||||||
|
ACMPL_FUZZY_WORD,
|
||||||
|
ACMPL_FUZZY_WWORD,
|
||||||
|
ACMPL_FUZZY,
|
||||||
|
ACMPL_SUFFIX,
|
||||||
|
ACMPL_SURROUND,
|
||||||
|
ACMPL_UNDO,
|
||||||
|
};
|
||||||
|
|
||||||
|
# endif // __ST_AUTOCOMPLETE_H
|
35
config.mk
Normal file
35
config.mk
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# st version
|
||||||
|
VERSION = 0.8.5
|
||||||
|
|
||||||
|
# Customize below to fit your system
|
||||||
|
|
||||||
|
# paths
|
||||||
|
PREFIX = /usr
|
||||||
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
||||||
|
X11INC = /usr/X11R6/include
|
||||||
|
X11LIB = /usr/X11R6/lib
|
||||||
|
|
||||||
|
PKG_CONFIG = pkg-config
|
||||||
|
|
||||||
|
# includes and libs
|
||||||
|
INCS = -I$(X11INC) \
|
||||||
|
`$(PKG_CONFIG) --cflags fontconfig` \
|
||||||
|
`$(PKG_CONFIG) --cflags freetype2`
|
||||||
|
LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \
|
||||||
|
`$(PKG_CONFIG) --libs fontconfig` \
|
||||||
|
`$(PKG_CONFIG) --libs freetype2`
|
||||||
|
|
||||||
|
# flags
|
||||||
|
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
|
||||||
|
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
|
||||||
|
STLDFLAGS = $(LIBS) $(LDFLAGS)
|
||||||
|
|
||||||
|
# OpenBSD:
|
||||||
|
#CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
|
||||||
|
#LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
|
||||||
|
# `$(PKG_CONFIG) --libs fontconfig` \
|
||||||
|
# `$(PKG_CONFIG) --libs freetype2`
|
||||||
|
|
||||||
|
# compiler and linker
|
||||||
|
# CC = c99
|
310
st-autocomplete
Normal file
310
st-autocomplete
Normal file
|
@ -0,0 +1,310 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
#########################################################################
|
||||||
|
# Copyright (C) 2012-2017 Wojciech Siewierski #
|
||||||
|
# #
|
||||||
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
|
# it under the terms of the GNU General Public License as published by #
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# This program is distributed in the hope that it will be useful, #
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||||
|
# GNU General Public License for more details. #
|
||||||
|
# #
|
||||||
|
# You should have received a copy of the GNU General Public License #
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||||
|
#########################################################################
|
||||||
|
|
||||||
|
my ($cmd, $cursor_row, $cursor_column) = @ARGV;
|
||||||
|
|
||||||
|
my $lines = [];
|
||||||
|
my $lines1 = [];
|
||||||
|
|
||||||
|
my $last_line = -1;
|
||||||
|
my $lines_before_cursor = 0;
|
||||||
|
|
||||||
|
while (<stdin>)
|
||||||
|
{
|
||||||
|
$last_line++;
|
||||||
|
|
||||||
|
s/[^[:print:]]/?/g;
|
||||||
|
|
||||||
|
if ($last_line < $cursor_row)
|
||||||
|
{
|
||||||
|
unshift @{$lines1}, $_;
|
||||||
|
$lines_before_cursor++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
unshift @{$lines}, $_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (@{$lines1})
|
||||||
|
{
|
||||||
|
unshift @{$lines}, $_;
|
||||||
|
}
|
||||||
|
|
||||||
|
my $cursor_row_in = $cursor_row;
|
||||||
|
|
||||||
|
$cursor_row = $last_line;
|
||||||
|
|
||||||
|
|
||||||
|
$self = {};
|
||||||
|
|
||||||
|
# A reference to a function that transforms the completed word
|
||||||
|
# into a regex matching the completions. Usually generated by
|
||||||
|
# generate_matcher().
|
||||||
|
#
|
||||||
|
# For example
|
||||||
|
# $fun = generate_matcher(".*");
|
||||||
|
# $fun->("foo");
|
||||||
|
# would return "f.*o.*o"
|
||||||
|
#
|
||||||
|
# In other words, indirectly decides which characters can
|
||||||
|
# appear in the completion.
|
||||||
|
my $matcher;
|
||||||
|
|
||||||
|
# A regular expression matching a character before each match.
|
||||||
|
# For example, it you want to match the text after a
|
||||||
|
# whitespace, set it to "\s".
|
||||||
|
my $char_class_before;
|
||||||
|
|
||||||
|
# A regular expression matching every character in the entered
|
||||||
|
# text that will be used to find matching completions. Usually
|
||||||
|
# "\w" or similar.
|
||||||
|
my $char_class_to_complete;
|
||||||
|
|
||||||
|
# A regular expression matching every allowed last character
|
||||||
|
# of the completion (uses greedy matching).
|
||||||
|
my $char_class_at_end;
|
||||||
|
|
||||||
|
if ($cmd eq 'word-complete') {
|
||||||
|
# Basic word completion. Completes the current word
|
||||||
|
# without any special matching.
|
||||||
|
$char_class_before = '[^-\w]';
|
||||||
|
$matcher = sub { quotemeta shift }; # identity
|
||||||
|
$char_class_at_end = '[-\w]';
|
||||||
|
$char_class_to_complete = '[-\w]';
|
||||||
|
} elsif ($cmd eq 'WORD-complete') {
|
||||||
|
# The same as above but in the Vim meaning of a "WORD" --
|
||||||
|
# whitespace delimited.
|
||||||
|
$char_class_before = '\s';
|
||||||
|
$matcher = sub { quotemeta shift };
|
||||||
|
$char_class_at_end = '\S';
|
||||||
|
$char_class_to_complete = '\S';
|
||||||
|
} elsif ($cmd eq 'fuzzy-word-complete' ||
|
||||||
|
$cmd eq 'skeleton-word-complete') {
|
||||||
|
# Fuzzy completion of the current word.
|
||||||
|
$char_class_before = '[^-\w]';
|
||||||
|
$matcher = generate_matcher('[-\w]*');
|
||||||
|
$char_class_at_end = '[-\w]';
|
||||||
|
$char_class_to_complete = '[-\w]';
|
||||||
|
} elsif ($cmd eq 'fuzzy-WORD-complete') {
|
||||||
|
# Fuzzy completion of the current WORD.
|
||||||
|
$char_class_before = '\s';
|
||||||
|
$matcher = generate_matcher('\S*');
|
||||||
|
$char_class_at_end = '\S';
|
||||||
|
$char_class_to_complete = '\S';
|
||||||
|
} elsif ($cmd eq 'fuzzy-complete' ||
|
||||||
|
$cmd eq 'skeleton-complete') {
|
||||||
|
# Fuzzy completion of an arbitrary text.
|
||||||
|
$char_class_before = '\W';
|
||||||
|
$matcher = generate_matcher('.*?');
|
||||||
|
$char_class_at_end = '\w';
|
||||||
|
$char_class_to_complete = '\S';
|
||||||
|
} elsif ($cmd eq 'suffix-complete') {
|
||||||
|
# Fuzzy completion of an completing suffixes, like
|
||||||
|
# completing test=hello from /blah/hello.
|
||||||
|
$char_class_before = '\S';
|
||||||
|
$matcher = generate_matcher('\S*');
|
||||||
|
$char_class_at_end = '\S';
|
||||||
|
$char_class_to_complete = '\S';
|
||||||
|
} elsif ($cmd eq 'surround-complete') {
|
||||||
|
# Completing contents of quotes and braces.
|
||||||
|
|
||||||
|
# Here we are using three named groups: s, b, p for quotes, braces
|
||||||
|
# and parenthesis.
|
||||||
|
$char_class_before = '((?<q>["\'`])|(?<b>\[)|(?<p>\())';
|
||||||
|
|
||||||
|
$matcher = generate_matcher('.*?');
|
||||||
|
|
||||||
|
# Here we match text till enclosing pair, using perl conditionals in
|
||||||
|
# regexps (?(condition)yes-expression|no-expression).
|
||||||
|
# \0 is used to hack concatenation with '*' later in the code.
|
||||||
|
$char_class_at_end = '.*?(.(?=(?(<b>)\]|((?(<p>)\)|\g{q})))))\0';
|
||||||
|
$char_class_to_complete = '\S';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# use the last used word or read the word behind the cursor
|
||||||
|
my $word_to_complete = read_word_at_coord($self, $cursor_row, $cursor_column,
|
||||||
|
$char_class_to_complete);
|
||||||
|
|
||||||
|
print stdout "$word_to_complete\n";
|
||||||
|
|
||||||
|
if ($word_to_complete) {
|
||||||
|
while (1) {
|
||||||
|
# ignore the completed word itself
|
||||||
|
$self->{already_completed}{$word_to_complete} = 1;
|
||||||
|
|
||||||
|
# continue the last search or start from the current row
|
||||||
|
my $completion = find_match($self,
|
||||||
|
$word_to_complete,
|
||||||
|
$self->{next_row} // $cursor_row,
|
||||||
|
$matcher->($word_to_complete),
|
||||||
|
$char_class_before,
|
||||||
|
$char_class_at_end);
|
||||||
|
if ($completion) {
|
||||||
|
print stdout $completion."\n".join ("\n", @{$self->{highlight}})."\n";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
last;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
sub highlight_match {
|
||||||
|
my ($self, $linenum, $completion) = @_;
|
||||||
|
|
||||||
|
# clear_highlight($self);
|
||||||
|
|
||||||
|
my $line = @{$lines}[$linenum];
|
||||||
|
my $re = quotemeta $completion;
|
||||||
|
|
||||||
|
$line =~ /$re/;
|
||||||
|
|
||||||
|
my $beg = $-[0];
|
||||||
|
my $end = $+[0];
|
||||||
|
|
||||||
|
if ($linenum >= $lines_before_cursor)
|
||||||
|
{
|
||||||
|
$lline = $last_line - $lines_before_cursor;
|
||||||
|
$linenum -= $lines_before_cursor;
|
||||||
|
$linenum = $lline - $linenum;
|
||||||
|
$linenum += $lines_before_cursor;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$self->{highlight} = [$linenum, $beg, $end];
|
||||||
|
}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
sub read_word_at_coord {
|
||||||
|
my ($self, $row, $col, $char_class) = @_;
|
||||||
|
|
||||||
|
$_ = substr(@{$lines} [$row], 0, $col); # get the current line up to the cursor...
|
||||||
|
s/.*?($char_class*)$/$1/; # ...and read the last word from it
|
||||||
|
return $_;
|
||||||
|
}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# Returns a function that takes a string and returns that string with
|
||||||
|
# this function's argument inserted between its every two characters.
|
||||||
|
# The resulting string is used as a regular expression matching the
|
||||||
|
# completion candidates.
|
||||||
|
sub generate_matcher {
|
||||||
|
my $regex_between = shift;
|
||||||
|
|
||||||
|
sub {
|
||||||
|
$_ = shift;
|
||||||
|
|
||||||
|
# sorry for this lispy code, I couldn't resist ;)
|
||||||
|
(join "$regex_between",
|
||||||
|
(map quotemeta,
|
||||||
|
(split //)))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# Checks whether the completion found by find_match() was already
|
||||||
|
# found and if it was, calls find_match() again to find the next
|
||||||
|
# completion.
|
||||||
|
#
|
||||||
|
# Takes all the arguments that find_match() would take, to make a
|
||||||
|
# mutually recursive call.
|
||||||
|
sub skip_duplicates {
|
||||||
|
my ($self, $word_to_match, $current_row, $regexp, $char_class_before, $char_class_at_end) = @_;
|
||||||
|
my $completion;
|
||||||
|
|
||||||
|
if ($current_row <= $lines_before_cursor)
|
||||||
|
{
|
||||||
|
$completion = shift @{$self->{matches_in_row}}; # get the leftmost one
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$completion = pop @{$self->{matches_in_row}}; # get the leftmost one
|
||||||
|
}
|
||||||
|
|
||||||
|
# check for duplicates
|
||||||
|
if (exists $self->{already_completed}{$completion}) {
|
||||||
|
# skip this completion
|
||||||
|
return find_match(@_);
|
||||||
|
} else {
|
||||||
|
$self->{already_completed}{$completion} = 1;
|
||||||
|
|
||||||
|
highlight_match($self,
|
||||||
|
$self->{next_row}+1,
|
||||||
|
$completion);
|
||||||
|
|
||||||
|
return $completion;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# Finds the next matching completion in the row current row or above
|
||||||
|
# while skipping duplicates using skip_duplicates().
|
||||||
|
sub find_match {
|
||||||
|
my ($self, $word_to_match, $current_row, $regexp, $char_class_before, $char_class_at_end) = @_;
|
||||||
|
$self->{matches_in_row} //= [];
|
||||||
|
|
||||||
|
# cycle through all the matches in the current row if not starting a new search
|
||||||
|
if (@{$self->{matches_in_row}}) {
|
||||||
|
return skip_duplicates($self, $word_to_match, $current_row, $regexp, $char_class_before, $char_class_at_end);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
my $i;
|
||||||
|
# search through all the rows starting with current one or one above the last checked
|
||||||
|
for ($i = $current_row; $i >= 0; --$i) {
|
||||||
|
my $line = @{$lines}[$i]; # get the line of text from the row
|
||||||
|
|
||||||
|
# if ($i == $cursor_row) {
|
||||||
|
# $line = substr $line, 0, $cursor_column;
|
||||||
|
# }
|
||||||
|
|
||||||
|
$_ = $line;
|
||||||
|
|
||||||
|
# find all the matches in the current line
|
||||||
|
my $match;
|
||||||
|
push @{$self->{matches_in_row}}, $+{match} while ($_, $match) = /
|
||||||
|
(.*${char_class_before})
|
||||||
|
(?<match>
|
||||||
|
${regexp}
|
||||||
|
${char_class_at_end}*
|
||||||
|
)
|
||||||
|
/ix;
|
||||||
|
# corner case: match at the very beginning of line
|
||||||
|
push @{$self->{matches_in_row}}, $+{match} if $line =~ /^(${char_class_before}){0}(?<match>$regexp$char_class_at_end*)/i;
|
||||||
|
|
||||||
|
if (@{$self->{matches_in_row}}) {
|
||||||
|
# remember which row should be searched next
|
||||||
|
$self->{next_row} = --$i;
|
||||||
|
|
||||||
|
# arguments needed for find_match() mutual recursion
|
||||||
|
return skip_duplicates($self, $word_to_match, $i, $regexp, $char_class_before, $char_class_at_end);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# # no more possible completions, revert to the original word
|
||||||
|
# undo_completion($self) if $i < 0;
|
||||||
|
|
||||||
|
return undef;
|
||||||
|
}
|
185
st.1
Normal file
185
st.1
Normal file
|
@ -0,0 +1,185 @@
|
||||||
|
.TH ST 1 st\-VERSION
|
||||||
|
.SH NAME
|
||||||
|
st \- simple terminal
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B st
|
||||||
|
.RB [ \-aiv ]
|
||||||
|
.RB [ \-c
|
||||||
|
.IR class ]
|
||||||
|
.RB [ \-f
|
||||||
|
.IR font ]
|
||||||
|
.RB [ \-g
|
||||||
|
.IR geometry ]
|
||||||
|
.RB [ \-n
|
||||||
|
.IR name ]
|
||||||
|
.RB [ \-o
|
||||||
|
.IR iofile ]
|
||||||
|
.RB [ \-T
|
||||||
|
.IR title ]
|
||||||
|
.RB [ \-t
|
||||||
|
.IR title ]
|
||||||
|
.RB [ \-l
|
||||||
|
.IR line ]
|
||||||
|
.RB [ \-w
|
||||||
|
.IR windowid ]
|
||||||
|
.RB [ \-z
|
||||||
|
.IR fontsize ]
|
||||||
|
.RB [[ \-e ]
|
||||||
|
.IR command
|
||||||
|
.RI [ arguments ...]]
|
||||||
|
.PP
|
||||||
|
.B st
|
||||||
|
.RB [ \-aiv ]
|
||||||
|
.RB [ \-c
|
||||||
|
.IR class ]
|
||||||
|
.RB [ \-f
|
||||||
|
.IR font ]
|
||||||
|
.RB [ \-g
|
||||||
|
.IR geometry ]
|
||||||
|
.RB [ \-n
|
||||||
|
.IR name ]
|
||||||
|
.RB [ \-o
|
||||||
|
.IR iofile ]
|
||||||
|
.RB [ \-T
|
||||||
|
.IR title ]
|
||||||
|
.RB [ \-t
|
||||||
|
.IR title ]
|
||||||
|
.RB [ \-w
|
||||||
|
.IR windowid ]
|
||||||
|
.RB [ \-z
|
||||||
|
.IR fontsize ]
|
||||||
|
.RB \-l
|
||||||
|
.IR line
|
||||||
|
.RI [ stty_args ...]
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.B st
|
||||||
|
is a simple terminal emulator.
|
||||||
|
.SH OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-a
|
||||||
|
disable alternate screens in terminal
|
||||||
|
.TP
|
||||||
|
.BI \-c " class"
|
||||||
|
defines the window class (default $TERM).
|
||||||
|
.TP
|
||||||
|
.BI \-f " font"
|
||||||
|
defines the
|
||||||
|
.I font
|
||||||
|
to use when st is run.
|
||||||
|
.TP
|
||||||
|
.BI \-g " geometry"
|
||||||
|
defines the X11 geometry string.
|
||||||
|
The form is [=][<cols>{xX}<rows>][{+-}<xoffset>{+-}<yoffset>]. See
|
||||||
|
.BR XParseGeometry (3)
|
||||||
|
for further details.
|
||||||
|
.TP
|
||||||
|
.B \-i
|
||||||
|
will fixate the position given with the -g option.
|
||||||
|
.TP
|
||||||
|
.BI \-n " name"
|
||||||
|
defines the window instance name (default $TERM).
|
||||||
|
.TP
|
||||||
|
.BI \-o " iofile"
|
||||||
|
writes all the I/O to
|
||||||
|
.I iofile.
|
||||||
|
This feature is useful when recording st sessions. A value of "-" means
|
||||||
|
standard output.
|
||||||
|
.TP
|
||||||
|
.BI \-T " title"
|
||||||
|
defines the window title (default 'st').
|
||||||
|
.TP
|
||||||
|
.BI \-t " title"
|
||||||
|
defines the window title (default 'st').
|
||||||
|
.TP
|
||||||
|
.BI \-w " windowid"
|
||||||
|
embeds st within the window identified by
|
||||||
|
.I windowid
|
||||||
|
.TP
|
||||||
|
.BI \-z " fontsize"
|
||||||
|
sets the default fontsize to
|
||||||
|
.I fontsize
|
||||||
|
.TP
|
||||||
|
.BI \-l " line"
|
||||||
|
use a tty
|
||||||
|
.I line
|
||||||
|
instead of a pseudo terminal.
|
||||||
|
.I line
|
||||||
|
should be a (pseudo-)serial device (e.g. /dev/ttyS0 on Linux for serial port
|
||||||
|
0).
|
||||||
|
When this flag is given
|
||||||
|
remaining arguments are used as flags for
|
||||||
|
.BR stty(1).
|
||||||
|
By default st initializes the serial line to 8 bits, no parity, 1 stop bit
|
||||||
|
and a 38400 baud rate. The speed is set by appending it as last argument
|
||||||
|
(e.g. 'st -l /dev/ttyS0 115200'). Arguments before the last one are
|
||||||
|
.BR stty(1)
|
||||||
|
flags. If you want to set odd parity on 115200 baud use for example 'st -l
|
||||||
|
/dev/ttyS0 parenb parodd 115200'. Set the number of bits by using for
|
||||||
|
example 'st -l /dev/ttyS0 cs7 115200'. See
|
||||||
|
.BR stty(1)
|
||||||
|
for more arguments and cases.
|
||||||
|
.TP
|
||||||
|
.B \-v
|
||||||
|
prints version information to stderr, then exits.
|
||||||
|
.TP
|
||||||
|
.BI \-e " command " [ " arguments " "... ]"
|
||||||
|
st executes
|
||||||
|
.I command
|
||||||
|
instead of the shell. If this is used it
|
||||||
|
.B must be the last option
|
||||||
|
on the command line, as in xterm / rxvt.
|
||||||
|
This option is only intended for compatibility,
|
||||||
|
and all the remaining arguments are used as a command
|
||||||
|
even without it.
|
||||||
|
.SH SHORTCUTS
|
||||||
|
.TP
|
||||||
|
.B Break
|
||||||
|
Send a break in the serial line.
|
||||||
|
Break key is obtained in PC keyboards
|
||||||
|
pressing at the same time control and pause.
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Print Screen
|
||||||
|
Toggle if st should print to the
|
||||||
|
.I iofile.
|
||||||
|
.TP
|
||||||
|
.B Shift-Print Screen
|
||||||
|
Print the full screen to the
|
||||||
|
.I iofile.
|
||||||
|
.TP
|
||||||
|
.B Print Screen
|
||||||
|
Print the selection to the
|
||||||
|
.I iofile.
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Shift-Page Up
|
||||||
|
Increase font size.
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Shift-Page Down
|
||||||
|
Decrease font size.
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Shift-Home
|
||||||
|
Reset to default font size.
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Shift-y
|
||||||
|
Paste from primary selection (middle mouse button).
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Shift-c
|
||||||
|
Copy the selected text to the clipboard selection.
|
||||||
|
.TP
|
||||||
|
.B Ctrl-Shift-v
|
||||||
|
Paste from the clipboard selection.
|
||||||
|
.SH CUSTOMIZATION
|
||||||
|
.B st
|
||||||
|
can be customized by creating a custom config.h and (re)compiling the source
|
||||||
|
code. This keeps it fast, secure and simple.
|
||||||
|
.SH AUTHORS
|
||||||
|
See the LICENSE file for the authors.
|
||||||
|
.SH LICENSE
|
||||||
|
See the LICENSE file for the terms of redistribution.
|
||||||
|
.SH SEE ALSO
|
||||||
|
.BR tabbed (1),
|
||||||
|
.BR utmp (1),
|
||||||
|
.BR stty (1),
|
||||||
|
.BR scroll (1)
|
||||||
|
.SH BUGS
|
||||||
|
See the TODO file in the distribution.
|
||||||
|
|
132
st.h
Normal file
132
st.h
Normal file
|
@ -0,0 +1,132 @@
|
||||||
|
/* See LICENSE for license details. */
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
/* macros */
|
||||||
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
||||||
|
#define MAX(a, b) ((a) < (b) ? (b) : (a))
|
||||||
|
#define LEN(a) (sizeof(a) / sizeof(a)[0])
|
||||||
|
#define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
|
||||||
|
#define DIVCEIL(n, d) (((n) + ((d) - 1)) / (d))
|
||||||
|
#define DEFAULT(a, b) (a) = (a) ? (a) : (b)
|
||||||
|
#define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
|
||||||
|
#define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || \
|
||||||
|
(a).bg != (b).bg)
|
||||||
|
#define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + \
|
||||||
|
(t1.tv_nsec-t2.tv_nsec)/1E6)
|
||||||
|
#define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
|
||||||
|
|
||||||
|
#define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
|
||||||
|
#define IS_TRUECOL(x) (1 << 24 & (x))
|
||||||
|
|
||||||
|
enum glyph_attribute {
|
||||||
|
ATTR_NULL = 0,
|
||||||
|
ATTR_BOLD = 1 << 0,
|
||||||
|
ATTR_FAINT = 1 << 1,
|
||||||
|
ATTR_ITALIC = 1 << 2,
|
||||||
|
ATTR_UNDERLINE = 1 << 3,
|
||||||
|
ATTR_BLINK = 1 << 4,
|
||||||
|
ATTR_REVERSE = 1 << 5,
|
||||||
|
ATTR_INVISIBLE = 1 << 6,
|
||||||
|
ATTR_STRUCK = 1 << 7,
|
||||||
|
ATTR_WRAP = 1 << 8,
|
||||||
|
ATTR_WIDE = 1 << 9,
|
||||||
|
ATTR_WDUMMY = 1 << 10,
|
||||||
|
ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum selection_mode {
|
||||||
|
SEL_IDLE = 0,
|
||||||
|
SEL_EMPTY = 1,
|
||||||
|
SEL_READY = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
enum selection_type {
|
||||||
|
SEL_REGULAR = 1,
|
||||||
|
SEL_RECTANGULAR = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
enum selection_snap {
|
||||||
|
SNAP_WORD = 1,
|
||||||
|
SNAP_LINE = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef unsigned char uchar;
|
||||||
|
typedef unsigned int uint;
|
||||||
|
typedef unsigned long ulong;
|
||||||
|
typedef unsigned short ushort;
|
||||||
|
|
||||||
|
typedef uint_least32_t Rune;
|
||||||
|
|
||||||
|
#define Glyph Glyph_
|
||||||
|
typedef struct {
|
||||||
|
Rune u; /* character code */
|
||||||
|
ushort mode; /* attribute flags */
|
||||||
|
uint32_t fg; /* foreground */
|
||||||
|
uint32_t bg; /* background */
|
||||||
|
} Glyph;
|
||||||
|
|
||||||
|
typedef Glyph *Line;
|
||||||
|
|
||||||
|
typedef union {
|
||||||
|
int i;
|
||||||
|
uint ui;
|
||||||
|
float f;
|
||||||
|
const void *v;
|
||||||
|
const char *s;
|
||||||
|
} Arg;
|
||||||
|
|
||||||
|
void autocomplete (const Arg *);
|
||||||
|
|
||||||
|
void die(const char *, ...);
|
||||||
|
void redraw(void);
|
||||||
|
void draw(void);
|
||||||
|
|
||||||
|
void kscrolldown(const Arg *);
|
||||||
|
void kscrollup(const Arg *);
|
||||||
|
void printscreen(const Arg *);
|
||||||
|
void printsel(const Arg *);
|
||||||
|
void sendbreak(const Arg *);
|
||||||
|
void toggleprinter(const Arg *);
|
||||||
|
|
||||||
|
int tattrset(int);
|
||||||
|
void tnew(int, int);
|
||||||
|
void tresize(int, int);
|
||||||
|
void tsetdirtattr(int);
|
||||||
|
void ttyhangup(void);
|
||||||
|
int ttynew(const char *, char *, const char *, char **);
|
||||||
|
size_t ttyread(void);
|
||||||
|
void ttyresize(int, int);
|
||||||
|
void ttywrite(const char *, size_t, int);
|
||||||
|
|
||||||
|
void resettitle(void);
|
||||||
|
|
||||||
|
void selclear(void);
|
||||||
|
void selinit(void);
|
||||||
|
void selstart(int, int, int);
|
||||||
|
void selextend(int, int, int, int);
|
||||||
|
int selected(int, int);
|
||||||
|
char *getsel(void);
|
||||||
|
|
||||||
|
size_t utf8encode(Rune, char *);
|
||||||
|
|
||||||
|
void *xmalloc(size_t);
|
||||||
|
void *xrealloc(void *, size_t);
|
||||||
|
char *xstrdup(const char *);
|
||||||
|
|
||||||
|
int xgetcolor(int x, unsigned char *r, unsigned char *g, unsigned char *b);
|
||||||
|
|
||||||
|
/* config.h globals */
|
||||||
|
extern char *utmp;
|
||||||
|
extern char *scroll;
|
||||||
|
extern char *stty_args;
|
||||||
|
extern char *vtiden;
|
||||||
|
extern wchar_t *worddelimiters;
|
||||||
|
extern int allowaltscreen;
|
||||||
|
extern int allowwindowops;
|
||||||
|
extern char *termname;
|
||||||
|
extern unsigned int tabspaces;
|
||||||
|
extern unsigned int defaultfg;
|
||||||
|
extern unsigned int defaultbg;
|
||||||
|
extern unsigned int defaultcs;
|
239
st.info
Normal file
239
st.info
Normal file
|
@ -0,0 +1,239 @@
|
||||||
|
st-mono| simpleterm monocolor,
|
||||||
|
acsc=+C\,D-A.B0E``aaffgghFiGjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~,
|
||||||
|
am,
|
||||||
|
bce,
|
||||||
|
bel=^G,
|
||||||
|
blink=\E[5m,
|
||||||
|
bold=\E[1m,
|
||||||
|
cbt=\E[Z,
|
||||||
|
cvvis=\E[?25h,
|
||||||
|
civis=\E[?25l,
|
||||||
|
clear=\E[H\E[2J,
|
||||||
|
cnorm=\E[?12l\E[?25h,
|
||||||
|
colors#2,
|
||||||
|
cols#80,
|
||||||
|
cr=^M,
|
||||||
|
csr=\E[%i%p1%d;%p2%dr,
|
||||||
|
cub=\E[%p1%dD,
|
||||||
|
cub1=^H,
|
||||||
|
cud1=^J,
|
||||||
|
cud=\E[%p1%dB,
|
||||||
|
cuf1=\E[C,
|
||||||
|
cuf=\E[%p1%dC,
|
||||||
|
cup=\E[%i%p1%d;%p2%dH,
|
||||||
|
cuu1=\E[A,
|
||||||
|
cuu=\E[%p1%dA,
|
||||||
|
dch=\E[%p1%dP,
|
||||||
|
dch1=\E[P,
|
||||||
|
dim=\E[2m,
|
||||||
|
dl=\E[%p1%dM,
|
||||||
|
dl1=\E[M,
|
||||||
|
ech=\E[%p1%dX,
|
||||||
|
ed=\E[J,
|
||||||
|
el=\E[K,
|
||||||
|
el1=\E[1K,
|
||||||
|
enacs=\E)0,
|
||||||
|
flash=\E[?5h$<80/>\E[?5l,
|
||||||
|
fsl=^G,
|
||||||
|
home=\E[H,
|
||||||
|
hpa=\E[%i%p1%dG,
|
||||||
|
hs,
|
||||||
|
ht=^I,
|
||||||
|
hts=\EH,
|
||||||
|
ich=\E[%p1%d@,
|
||||||
|
il1=\E[L,
|
||||||
|
il=\E[%p1%dL,
|
||||||
|
ind=^J,
|
||||||
|
indn=\E[%p1%dS,
|
||||||
|
invis=\E[8m,
|
||||||
|
is2=\E[4l\E>\E[?1034l,
|
||||||
|
it#8,
|
||||||
|
kel=\E[1;2F,
|
||||||
|
ked=\E[1;5F,
|
||||||
|
ka1=\E[1~,
|
||||||
|
ka3=\E[5~,
|
||||||
|
kc1=\E[4~,
|
||||||
|
kc3=\E[6~,
|
||||||
|
kbs=\177,
|
||||||
|
kcbt=\E[Z,
|
||||||
|
kb2=\EOu,
|
||||||
|
kcub1=\EOD,
|
||||||
|
kcud1=\EOB,
|
||||||
|
kcuf1=\EOC,
|
||||||
|
kcuu1=\EOA,
|
||||||
|
kDC=\E[3;2~,
|
||||||
|
kent=\EOM,
|
||||||
|
kEND=\E[1;2F,
|
||||||
|
kIC=\E[2;2~,
|
||||||
|
kNXT=\E[6;2~,
|
||||||
|
kPRV=\E[5;2~,
|
||||||
|
kHOM=\E[1;2H,
|
||||||
|
kLFT=\E[1;2D,
|
||||||
|
kRIT=\E[1;2C,
|
||||||
|
kind=\E[1;2B,
|
||||||
|
kri=\E[1;2A,
|
||||||
|
kclr=\E[3;5~,
|
||||||
|
kdl1=\E[3;2~,
|
||||||
|
kdch1=\E[3~,
|
||||||
|
kich1=\E[2~,
|
||||||
|
kend=\E[4~,
|
||||||
|
kf1=\EOP,
|
||||||
|
kf2=\EOQ,
|
||||||
|
kf3=\EOR,
|
||||||
|
kf4=\EOS,
|
||||||
|
kf5=\E[15~,
|
||||||
|
kf6=\E[17~,
|
||||||
|
kf7=\E[18~,
|
||||||
|
kf8=\E[19~,
|
||||||
|
kf9=\E[20~,
|
||||||
|
kf10=\E[21~,
|
||||||
|
kf11=\E[23~,
|
||||||
|
kf12=\E[24~,
|
||||||
|
kf13=\E[1;2P,
|
||||||
|
kf14=\E[1;2Q,
|
||||||
|
kf15=\E[1;2R,
|
||||||
|
kf16=\E[1;2S,
|
||||||
|
kf17=\E[15;2~,
|
||||||
|
kf18=\E[17;2~,
|
||||||
|
kf19=\E[18;2~,
|
||||||
|
kf20=\E[19;2~,
|
||||||
|
kf21=\E[20;2~,
|
||||||
|
kf22=\E[21;2~,
|
||||||
|
kf23=\E[23;2~,
|
||||||
|
kf24=\E[24;2~,
|
||||||
|
kf25=\E[1;5P,
|
||||||
|
kf26=\E[1;5Q,
|
||||||
|
kf27=\E[1;5R,
|
||||||
|
kf28=\E[1;5S,
|
||||||
|
kf29=\E[15;5~,
|
||||||
|
kf30=\E[17;5~,
|
||||||
|
kf31=\E[18;5~,
|
||||||
|
kf32=\E[19;5~,
|
||||||
|
kf33=\E[20;5~,
|
||||||
|
kf34=\E[21;5~,
|
||||||
|
kf35=\E[23;5~,
|
||||||
|
kf36=\E[24;5~,
|
||||||
|
kf37=\E[1;6P,
|
||||||
|
kf38=\E[1;6Q,
|
||||||
|
kf39=\E[1;6R,
|
||||||
|
kf40=\E[1;6S,
|
||||||
|
kf41=\E[15;6~,
|
||||||
|
kf42=\E[17;6~,
|
||||||
|
kf43=\E[18;6~,
|
||||||
|
kf44=\E[19;6~,
|
||||||
|
kf45=\E[20;6~,
|
||||||
|
kf46=\E[21;6~,
|
||||||
|
kf47=\E[23;6~,
|
||||||
|
kf48=\E[24;6~,
|
||||||
|
kf49=\E[1;3P,
|
||||||
|
kf50=\E[1;3Q,
|
||||||
|
kf51=\E[1;3R,
|
||||||
|
kf52=\E[1;3S,
|
||||||
|
kf53=\E[15;3~,
|
||||||
|
kf54=\E[17;3~,
|
||||||
|
kf55=\E[18;3~,
|
||||||
|
kf56=\E[19;3~,
|
||||||
|
kf57=\E[20;3~,
|
||||||
|
kf58=\E[21;3~,
|
||||||
|
kf59=\E[23;3~,
|
||||||
|
kf60=\E[24;3~,
|
||||||
|
kf61=\E[1;4P,
|
||||||
|
kf62=\E[1;4Q,
|
||||||
|
kf63=\E[1;4R,
|
||||||
|
khome=\E[1~,
|
||||||
|
kil1=\E[2;5~,
|
||||||
|
krmir=\E[2;2~,
|
||||||
|
knp=\E[6~,
|
||||||
|
kmous=\E[M,
|
||||||
|
kpp=\E[5~,
|
||||||
|
lines#24,
|
||||||
|
mir,
|
||||||
|
msgr,
|
||||||
|
npc,
|
||||||
|
op=\E[39;49m,
|
||||||
|
pairs#64,
|
||||||
|
mc0=\E[i,
|
||||||
|
mc4=\E[4i,
|
||||||
|
mc5=\E[5i,
|
||||||
|
rc=\E8,
|
||||||
|
rev=\E[7m,
|
||||||
|
ri=\EM,
|
||||||
|
rin=\E[%p1%dT,
|
||||||
|
ritm=\E[23m,
|
||||||
|
rmacs=\E(B,
|
||||||
|
rmcup=\E[?1049l,
|
||||||
|
rmir=\E[4l,
|
||||||
|
rmkx=\E[?1l\E>,
|
||||||
|
rmso=\E[27m,
|
||||||
|
rmul=\E[24m,
|
||||||
|
rs1=\Ec,
|
||||||
|
rs2=\E[4l\E>\E[?1034l,
|
||||||
|
sc=\E7,
|
||||||
|
sitm=\E[3m,
|
||||||
|
sgr0=\E[0m,
|
||||||
|
smacs=\E(0,
|
||||||
|
smcup=\E[?1049h,
|
||||||
|
smir=\E[4h,
|
||||||
|
smkx=\E[?1h\E=,
|
||||||
|
smso=\E[7m,
|
||||||
|
smul=\E[4m,
|
||||||
|
tbc=\E[3g,
|
||||||
|
tsl=\E]0;,
|
||||||
|
xenl,
|
||||||
|
vpa=\E[%i%p1%dd,
|
||||||
|
# XTerm extensions
|
||||||
|
rmxx=\E[29m,
|
||||||
|
smxx=\E[9m,
|
||||||
|
# disabled rep for now: causes some issues with older ncurses versions.
|
||||||
|
# rep=%p1%c\E[%p2%{1}%-%db,
|
||||||
|
# tmux extensions, see TERMINFO EXTENSIONS in tmux(1)
|
||||||
|
Tc,
|
||||||
|
Ms=\E]52;%p1%s;%p2%s\007,
|
||||||
|
Se=\E[2 q,
|
||||||
|
Ss=\E[%p1%d q,
|
||||||
|
|
||||||
|
st| simpleterm,
|
||||||
|
use=st-mono,
|
||||||
|
colors#8,
|
||||||
|
setab=\E[4%p1%dm,
|
||||||
|
setaf=\E[3%p1%dm,
|
||||||
|
setb=\E[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m,
|
||||||
|
setf=\E[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m,
|
||||||
|
sgr=%?%p9%t\E(0%e\E(B%;\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m,
|
||||||
|
|
||||||
|
st-256color| simpleterm with 256 colors,
|
||||||
|
use=st,
|
||||||
|
ccc,
|
||||||
|
colors#256,
|
||||||
|
oc=\E]104\007,
|
||||||
|
pairs#32767,
|
||||||
|
# Nicked from xterm-256color
|
||||||
|
initc=\E]4;%p1%d;rgb\:%p2%{255}%*%{1000}%/%2.2X/%p3%{255}%*%{1000}%/%2.2X/%p4%{255}%*%{1000}%/%2.2X\E\\,
|
||||||
|
setab=\E[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m,
|
||||||
|
setaf=\E[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m,
|
||||||
|
|
||||||
|
st-meta| simpleterm with meta key,
|
||||||
|
use=st,
|
||||||
|
km,
|
||||||
|
rmm=\E[?1034l,
|
||||||
|
smm=\E[?1034h,
|
||||||
|
rs2=\E[4l\E>\E[?1034h,
|
||||||
|
is2=\E[4l\E>\E[?1034h,
|
||||||
|
|
||||||
|
st-meta-256color| simpleterm with meta key and 256 colors,
|
||||||
|
use=st-256color,
|
||||||
|
km,
|
||||||
|
rmm=\E[?1034l,
|
||||||
|
smm=\E[?1034h,
|
||||||
|
rs2=\E[4l\E>\E[?1034h,
|
||||||
|
is2=\E[4l\E>\E[?1034h,
|
||||||
|
|
||||||
|
st-bs| simpleterm with backspace as backspace,
|
||||||
|
use=st,
|
||||||
|
kbs=\010,
|
||||||
|
kdch1=\177,
|
||||||
|
|
||||||
|
st-bs-256color| simpleterm with backspace as backspace and 256colors,
|
||||||
|
use=st-256color,
|
||||||
|
kbs=\010,
|
||||||
|
kdch1=\177,
|
40
win.h
Normal file
40
win.h
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
/* See LICENSE for license details. */
|
||||||
|
|
||||||
|
enum win_mode {
|
||||||
|
MODE_VISIBLE = 1 << 0,
|
||||||
|
MODE_FOCUSED = 1 << 1,
|
||||||
|
MODE_APPKEYPAD = 1 << 2,
|
||||||
|
MODE_MOUSEBTN = 1 << 3,
|
||||||
|
MODE_MOUSEMOTION = 1 << 4,
|
||||||
|
MODE_REVERSE = 1 << 5,
|
||||||
|
MODE_KBDLOCK = 1 << 6,
|
||||||
|
MODE_HIDE = 1 << 7,
|
||||||
|
MODE_APPCURSOR = 1 << 8,
|
||||||
|
MODE_MOUSESGR = 1 << 9,
|
||||||
|
MODE_8BIT = 1 << 10,
|
||||||
|
MODE_BLINK = 1 << 11,
|
||||||
|
MODE_FBLINK = 1 << 12,
|
||||||
|
MODE_FOCUS = 1 << 13,
|
||||||
|
MODE_MOUSEX10 = 1 << 14,
|
||||||
|
MODE_MOUSEMANY = 1 << 15,
|
||||||
|
MODE_BRCKTPASTE = 1 << 16,
|
||||||
|
MODE_NUMLOCK = 1 << 17,
|
||||||
|
MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
|
||||||
|
|MODE_MOUSEMANY,
|
||||||
|
};
|
||||||
|
|
||||||
|
void xbell(void);
|
||||||
|
void xclipcopy(void);
|
||||||
|
void xdrawcursor(int, int, Glyph, int, int, Glyph);
|
||||||
|
void xdrawline(Line, int, int, int);
|
||||||
|
void xfinishdraw(void);
|
||||||
|
void xloadcols(void);
|
||||||
|
int xsetcolorname(int, const char *);
|
||||||
|
void xseticontitle(char *);
|
||||||
|
void xsettitle(char *);
|
||||||
|
int xsetcursor(int);
|
||||||
|
void xsetmode(int, unsigned int);
|
||||||
|
void xsetpointermotion(int);
|
||||||
|
void xsetsel(char *);
|
||||||
|
int xstartdraw(void);
|
||||||
|
void xximspot(int, int);
|
Loading…
Reference in New Issue
Block a user