Add Ctab as a bindable command. - sam - An updated version of the sam text editor.
 (HTM) git clone git://vernunftzentrum.de/sam.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit b5897f5e16525cd8f6d05eb4443249a620c5784a
 (DIR) parent ad594291b42ac116ce427211956cff9126912036
 (HTM) Author: Rob King <jking@deadpixi.com>
       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(-)
       ---
 (DIR) 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,
 (DIR) 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}
        };