├── .dir-locals.el ├── .ert-runner ├── .gitignore ├── .travis.yml ├── Cask ├── Makefile ├── README.md ├── dev ├── .nosearch ├── Makefile ├── README.txt ├── doc-gen.el └── fudge-discover.el ├── m-buffer-at.el ├── m-buffer-benchmark.els ├── m-buffer-doc.org ├── m-buffer-macro.el ├── m-buffer.el └── test ├── Makefile ├── case-match.txt ├── line-start.txt ├── m-buffer-at-test.el ├── m-buffer-init.el ├── m-buffer-test.el ├── match-data.txt ├── nth.txt ├── one-two-three.txt ├── sentence-end.txt └── with-temp-buffer.txt /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.ert-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/.ert-runner -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/README.md -------------------------------------------------------------------------------- /dev/.nosearch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/dev/Makefile -------------------------------------------------------------------------------- /dev/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/dev/README.txt -------------------------------------------------------------------------------- /dev/doc-gen.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/dev/doc-gen.el -------------------------------------------------------------------------------- /dev/fudge-discover.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/dev/fudge-discover.el -------------------------------------------------------------------------------- /m-buffer-at.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/m-buffer-at.el -------------------------------------------------------------------------------- /m-buffer-benchmark.els: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/m-buffer-benchmark.els -------------------------------------------------------------------------------- /m-buffer-doc.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/m-buffer-doc.org -------------------------------------------------------------------------------- /m-buffer-macro.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/m-buffer-macro.el -------------------------------------------------------------------------------- /m-buffer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/m-buffer.el -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/case-match.txt: -------------------------------------------------------------------------------- 1 | A 2 | a 3 | A 4 | a 5 | -------------------------------------------------------------------------------- /test/line-start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/line-start.txt -------------------------------------------------------------------------------- /test/m-buffer-at-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/m-buffer-at-test.el -------------------------------------------------------------------------------- /test/m-buffer-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/m-buffer-init.el -------------------------------------------------------------------------------- /test/m-buffer-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/m-buffer-test.el -------------------------------------------------------------------------------- /test/match-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/match-data.txt -------------------------------------------------------------------------------- /test/nth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/nth.txt -------------------------------------------------------------------------------- /test/one-two-three.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/one-two-three.txt -------------------------------------------------------------------------------- /test/sentence-end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillord/m-buffer-el/HEAD/test/sentence-end.txt -------------------------------------------------------------------------------- /test/with-temp-buffer.txt: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | three 4 | --------------------------------------------------------------------------------