summaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)Author
2023-08-17build: don't pollute base dir with .o and .d filesRandy Palamar
some users were (rightfully) annoyed by this
2023-08-16build: support incremental rebuildsRandy Palamar
2021-02-09gitignore: remove vim specific swap filesMarc André Tanner
These were from the time before vis was self-hosting.
2017-05-31build: allow to build self-contained executableChristian Hesse
2017-01-27vis-digraph: add utility to handle digraphsjosuah
Hook it up via Lua to <C-k> in insert and replace mode. Close #460 #475
2017-01-11single: allow to build self-extracting executableChristian Hesse
This allows to create a self extracting executable. The standalone binary and lua files are extracted to /tmp/.vis-XXXXXX, vis is started with the given command line arguments, finally temporary files are removed. Signed-off-by: Christian Hesse <mail@eworm.de>
2016-12-07Cleanup .gitignore and ignore HTML and CSS filesMarc André Tanner
Close #424
2016-11-10build: add Makefile target for code coverage via gcovMarc André Tanner
2016-05-20ignore vis-menuChristian Hesse
2016-05-06ignore README.html in subdirsChristian Hesse
2016-03-29ignore README.htmlChristian Hesse
2016-03-21build: overhaul build system auto detect stuff using a configure scriptMarc André Tanner
The new build instructions are: $ ./configure && make && sudo make install The configure script tries to auto detect support for various libraries and compiler options. These choices can be overwritten by explicitly specifing --{en,dis}able-{lua,selinux,acl}. See ./configure --help for all supported options. The configure script generates config.mk which should allow portable (among GNU and BSD make) Makefiles. Manually editing config.mk is still supported.
2016-01-10gitignore: Fix patternMichael Reed
From `man gitignore': o A leading slash matches the beginning of the pathname. For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".
2015-11-10Update .gitignoreMarc André Tanner
Closes #104
2015-01-04Added a .gitignoreSebastian Götte