about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/buffer.el
AgeCommit message (Collapse)AuthorFilesLines
2020-09-02 Require general.el for packages that depend on itWilliam Carroll1-0/+1
Since I'm calling `(require 'general)` in `wpc-package.el`, which gets called at the beginning of my `init.el` file, all sub-modules have `general`. I originally wanted this, but I'm beginning to rethink that preference. After `script.el` broke my CI because of a missing `general` dependency, I'm fixing it for `buffer.el` and all other modules that consume `general`.
2020-09-02 Add missing ts.el dependency to buffer.elWilliam Carroll1-0/+1
Since script.el depends on buffer.el now, buffer.el fails to evaluate because of a missing dependency on ts.el. Blindspots like this make me want to eventually support testing individual loads of each of the libraries in my .emacs.d/wpc directory.
2020-09-01 More Elisp lintingWilliam Carroll1-2/+2
In order for this to scale, I need to solve two things: 1. Ad-hoc ignore fill-column rules for URLs and other exceptions. 2. Run Elisp flychecker without evaluating my Elisp code and firing its side-effects.
2020-09-01 More Elisp lintingWilliam Carroll1-56/+60
This should cover most of the remaining linting errors. After this, I expect fewer than ten linting errors.
2020-08-31 Lint string, macros.elWilliam Carroll1-2/+2
More of the same type of linting... basically preferring `namespace-` instead of `namespace/`.
2020-08-31 Lint prelude.elWilliam Carroll1-2/+2
This was a doozey because I use it everywhere. Is there a better way to globally rename things? Aye aye aye... computers, man!
2020-08-31 Lint maybe.elWilliam Carroll1-3/+3
This change had rippling implications.
2020-02-02 Blacklist additional non-source-code modesWilliam Carroll1-0/+2
I don't want vterm buffers or magit buffers showing up when I cycle throw buffers.
2020-01-30 Move move .emacs.d out of configs/sharedWilliam Carroll1-0/+198
Moving all of my Emacs-related files into their own directory at the root of this repository.