about summary refs log tree commit diff stats
path: root/src/buffer/container.nim
Commit message (Expand)AuthorAgeFilesLines
* Fix connection load info not being shownbptato2023-01-021-1/+1
* loader: proper redirect handlingbptato2023-01-011-5/+3
* buffer: fix some search bugs & refactor regex stuffbptato2023-01-011-22/<
# dwm version
VERSION = 4.4.1

# Customize below to fit your system

# additional layouts beside floating
SRC = tile.c

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = -s ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

# compiler and linker
CC = cc
f='/ahoang/chawan/commit/src/buffer/container.nim?id=b1794c0961a5efb30a0dafa34845bedf49261819'>Fix some screen update issues, remove redraw timerbptato2022-12-011-7/+14 * Restore cursor position on reloadbptato2022-11-291-29/+42 * Add textareabptato2022-11-281-20/+29 * Rework broken non-blocking iobptato2022-11-271-31/+49 * Fix adoption agency algorithm bugsbptato2022-11-271-5/+11 * Fix some regressions, add loading progress barbptato2022-11-271-75/+63 * Also, implement proper asyncbptato2022-11-271-144/+141 * Get rid of writeCommand in containerbptato2022-11-261-26/+17 * Fix some table layout issuesbptato2022-11-251-28/+7 * Improve status messages, fix regressions, etcbptato2022-11-251-16/+39 * Buffer improvementsbptato2022-11-251-32/+80 * Avoid forking child processes from the main processbptato2022-11-241-48/+32 * Move ips stuff to src/ips/bptato2022-11-221-1/+1 * Color & term improvementsbptato2022-11-211-46/+50 * Color stuffbptato2022-11-211-1/+1 * Terminal refactoringsbptato2022-11-201-32/+47 * Incremental loading of text files, etc.bptato2022-11-201-11/+8 * Fix weird screen shift behaviorbptato2022-11-191-15/+23 * Re-implement highlightingbptato2022-11-191-2/+52 * Rewrite buffer/pager for multi-processingbptato2022-11-191-0/+626