branch: elpa/tablist commit 117c37fa8fa043918d62fd280605c53356f4d641 Author: Andreas Politz <poli...@hochschule-trier.de> Commit: Andreas Politz <poli...@hochschule-trier.de>
Added Cask, Makefile and README files --- Cask | 5 +++++ Makefile | 9 +++++++++ README | 5 +++++ 3 files changed, 19 insertions(+) diff --git a/Cask b/Cask new file mode 100644 index 0000000..17a1d76 --- /dev/null +++ b/Cask @@ -0,0 +1,5 @@ +(source gnu) +(source melpa) + +(package-file "tablist.el") +(files "*.el") diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91e6b00 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +all: package + +package: + cask package +clean: + rm -rf dist + rm -f -- *.elc + diff --git a/README b/README new file mode 100644 index 0000000..2875ed6 --- /dev/null +++ b/README @@ -0,0 +1,5 @@ +This package adds marks and filters to tabulated-list-mode. It +also kind of puts a dired face on tabulated list buffers. + +It can be used by deriving from tablist-mode and some features by +using tablist-minor-mode inside a tabulated-list-mode buffer.