Add visual mode and code revamp, add dd, G, gg motion

This commit is contained in:
Night Kaly 2024-11-09 00:39:47 +00:00
parent 8573bc1c5c
commit 86dce61030
Signed by: night0721
SSH key fingerprint: SHA256:B/hgVwUoBpx5vdNsXl9w8XwZljA9766uk6T4ubZp5HM
2 changed files with 1215 additions and 3 deletions

View file

@ -8,11 +8,10 @@ BINDIR = $(PREFIX)/bin
CFLAGS = -Os -march=native -mtune=native -pipe -s -flto -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE CFLAGS = -Os -march=native -mtune=native -pipe -s -flto -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE
SRC != find src -name *.c SRC = vip.c
INCLUDE = include
$(TARGET): $(SRC) config.h $(TARGET): $(SRC) config.h
$(CC) $(SRC) -o $@ $(CFLAGS) -I$(INCLUDE) -I. $(CC) $(SRC) -o $@ $(CFLAGS)
dist: dist:
mkdir -p $(TARGET)-$(VERSION) mkdir -p $(TARGET)-$(VERSION)

1213
vip.c Normal file

File diff suppressed because it is too large Load diff