sandy

text editor
git clone git://git.suckless.org/sandy
Log | Files | Refs | README | LICENSE

commit 9202804032cdd790ce9a777e494b56c4ad932083
parent 1d11756c5c8a35a27705b4c5bc3bbc8dcabb2597
Author: Rafael Garcia <rafael.garcia.gallego@gmail.com>
Date:   Wed,  3 Aug 2011 00:18:12 +0200

Remove old binding C-A/C-E when at bol/eol
Diffstat:
config.def.h | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -78,7 +78,6 @@ static const Key curskeys[] = { /* Don't use CONTROL or META here */ static const Key stdkeys[] = { /* keyv, test, func, arg */ { CONTROL('@'), { 0, 0, 0, 0 }, f_move, { .m = m_tomark } }, -{ CONTROL('A'), { t_bol, 0, 0, 0 }, f_move, { .m = m_prevscr } }, { CONTROL('A'), { 0, 0, 0, 0 }, f_move, { .m = m_bol } }, { CONTROL('B'), { 0, 0, 0, 0 }, f_move, { .m = m_prevchar } }, { META('b'), { 0, 0, 0, 0 }, f_move, { .m = m_prevword } }, @@ -91,7 +90,6 @@ static const Key stdkeys[] = { { CONTROL('D'), { 0, 0, 0, 0 }, f_move, { .m = m_nextchar } }, { META('d'), { t_sel, t_rw, 0, 0 }, f_pipe, TOCLIP }, { META('d'), { 0, 0, 0, 0 }, f_select, { .m = m_nextword } }, -{ CONTROL('E'), { t_eol, 0, 0, 0 }, f_move, { .m = m_nextscr } }, { CONTROL('E'), { 0, 0, 0, 0 }, f_move, { .m = m_eol } }, { CONTROL('F'), { 0, 0, 0, 0 }, f_move, { .m = m_nextchar } }, { META('f'), { 0, 0, 0, 0 }, f_move, { .m = m_nextword } },