Add Ctab as a bindable command. - sam - An updated version of the sam text edit… | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit b5897f5e16525cd8f6d05eb4443249a620c5784a | |
parent ad594291b42ac116ce427211956cff9126912036 | |
Author: Rob King <[email protected]> | |
Date: Tue, 13 Sep 2016 11:00:28 -0500 | |
Add Ctab as a bindable command. | |
Diffstat: | |
doc/samrc.5 | 1 + | |
samterm/samrc.c | 1 + | |
2 files changed, 2 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/doc/samrc.5 b/doc/samrc.5 | |
@@ -240,6 +240,7 @@ exchange Exchange snarf buffer Control-Q | |
write Write current file None | |
eol Move to end of line None | |
bol Move to beginning of line None | |
+tab Insert a possibly expanded tab Tab | |
.TE | |
.Pp | |
Additionally, | |
diff --git a/samterm/samrc.c b/samterm/samrc.c | |
@@ -43,6 +43,7 @@ static Namemapping commandmapping[] ={ | |
{"write", Cwrite}, | |
{"eol", Ceol}, | |
{"bol", Cbol}, | |
+ {"tab", Ctab}, | |
{NULL, 0} | |
}; | |