CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/04/30 04:40:21
Modified files:
usr.bin/vi/common: options.c
usr.bin/vi/docs/USD.doc/vi.man: vi.1
usr.bin/vi/docs/USD.doc/vi.ref: set.opt.roff
usr.bin/vi/ex : ex_shift.c ex_txt.c
usr.bin/vi/vi : v_txt.c
Log message:
Add an expandtab option, similar to what vim supports.
If set, expands tabs to spaces in insert mode as well as when
shifting and indenting/outdenting. If quoted with ^V, a literal
tab is inserted. Adapted from NetBSD, but this implementation
more closely matches vim's behavior. OK dlg@