aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add config file for mpvTom Ryder2018-11-253-0/+8
| | | | | | | | | | | | Only one line so far, but it's a good one: don't open a new window to try to show me album art when I play FLACs, especially since it doesn't work.
| * Use full "mouse" for xset(1) call in ~/.xinitrcTom Ryder2018-11-251-1/+1
| | | | | | | | | | | | | | From xset(1): > The m option controls the mouse parameters; it may be abbreviated to > 'm'.
| * Remove vim-tiny workaround for 'undodir' settingTom Ryder2018-11-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 575f00d changed the setting for 'undodir' and similar path-based settings to set the values conditionally based on the operating system being used, while still setting them sensibly for "tiny" builds of Vim on Unix, which skips all :if blocks. This isn't necessary for 'undodir', because a tiny build of Vim won't have the persistent_undo feature required for the option to exist at all, so we can make this particular setting a little less awkward. The 'backupdir' and 'directory' settings, however, need to keep their existing structure to remain interoperable.
| * Define b:undo_indent for Perl buffersTom Ryder2018-11-252-0/+11
| | | | | | | | This should probably be pushed upstream.
| * Set missing b:undo_indent instructions for AWKTom Ryder2018-11-251-0/+7
| | | | | | | | | | Switching filetypes from "awk" to another type doesn't load the indentation of the new type, due to the absence of this setting.
| * Undo shell script dialect flags from filetype.vimTom Ryder2018-11-251-0/+10
| | | | | | | | | | These local buffer variable flags weren't being cleared correctly on a filetype change.
| * Merge branch 'hotfix/v1.77.1' into developTom Ryder2018-11-242-4/+4
| |\ | | | | | | | | | | | | | | | * hotfix/v1.77.1: Bump VERSION Allow equal bounds in rndi(1df)
| * | Code-format word in TABS.mdTom Ryder2018-11-241-2/+2
| | |
| * | Remove a lot of alignment spacingTom Ryder2018-11-2311-104/+104
| | |
| * | Merge branch 'release/v1.77.0' into developTom Ryder2018-11-231-2/+2
| |\ \ | | | | | | | | | | | | | | | | * release/v1.77.0: Bump VERSION
* | \ \ Merge branch 'hotfix/v1.77.1'v1.77.1Tom Ryder2018-11-242-4/+4
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | * hotfix/v1.77.1: Bump VERSION Allow equal bounds in rndi(1df)
| * | | Bump VERSIONTom Ryder2018-11-241-2/+2
| | | |
| * | | Allow equal bounds in rndi(1df)Tom Ryder2018-11-241-2/+2
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | Calling rndi(1df) like `rndi 1 1` should work; it should just always yield one. Instead, it was complaining about the second bound not being greater than the first. I noticed this because I only had one background image in ~/.xbackgrounds and ran xrbg(1df), and it didn't know how to handle it.
* | | Merge branch 'release/v1.77.0'v1.77.0Tom Ryder2018-11-233-6/+4
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | * release/v1.77.0: Bump VERSION Correct RHS of (un)important mail ftplugin map Add an issue about mail filetypes in Vim Remove a couple of unneeded XTerm resources
| * | Bump VERSIONTom Ryder2018-11-231-2/+2
| |/
| * Correct RHS of (un)important mail ftplugin mapTom Ryder2018-11-232-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | This resolves the issue raised in f1b6f3b, where the mappings did not work if the cursor was on the first line. I had the colon `:` that starts the `ex` command and the `<C-U>` that clears any existing command around the wrong way. Because CTRL-U in normal mode scrolls up, it fails if we're already on the top line, and the rest of the mapping looks to be skipped. There don't seem to be any other instances of the same error that I can find.
| * Add an issue about mail filetypes in VimTom Ryder2018-11-231-0/+2
| |
| * Remove a couple of unneeded XTerm resourcesTom Ryder2018-11-221-2/+0
| |
| * Merge branch 'hotfix/v1.76.2' into developTom Ryder2018-11-222-26/+26
| |\ | | | | | | | | | | | | * hotfix/v1.76.2: Correctly specify XTerm resources
| * \ Merge branch 'hotfix/v1.76.1' into developTom Ryder2018-11-224-30/+29
| |\ \ | | | | | | | | | | | | | | | | | | | | * hotfix/v1.76.1: Rename xterm resources file to "XTerm" Remove reference to X/Xresources.d/Xft.
| * \ \ Merge branch 'release/v1.76.0' into developTom Ryder2018-11-221-2/+2
| |\ \ \ | | | | | | | | | | | | | | | | | | | | * release/v1.76.0: Bump VERSION
* | \ \ \ Merge branch 'hotfix/v1.76.2'v1.76.2Tom Ryder2018-11-222-26/+26
|\ \ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | * hotfix/v1.76.2: Correctly specify XTerm resources
| * | | | Bump VERSIONTom Ryder2018-11-221-2/+2
| | | | |
| * | | | Correctly specify XTerm resourcesTom Ryder2018-11-221-24/+24
|/ / / / | | | | | | | | | | | | | | | | I never would have guessed that "vt100" was what I was missing here... but a closer reading of the xterm(1) manual page does show it.
* | | | Merge branch 'hotfix/v1.76.1'v1.76.1Tom Ryder2018-11-224-30/+29
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | * hotfix/v1.76.1: Rename xterm resources file to "XTerm" Remove reference to X/Xresources.d/Xft
| * | | Bump VERSIONTom Ryder2018-11-221-2/+2
| | | |
| * | | Rename xterm resources file to "XTerm"Tom Ryder2018-11-223-27/+27
| | | |
| * | | Remove reference to X/Xresources.d/Xft.Tom Ryder2018-11-221-1/+0
|/ / / | | | | | | | | | The file was removed in b456da1, but the reference to it was not.
* | | Merge branch 'release/v1.76.0'v1.76.0Tom Ryder2018-11-225-9/+26
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | * release/v1.76.0: Bump VERSION Add color definitions to xterm resources Correct TERM string for xterm Remove some resources from URxvt Add Dillo to README.md configuration list Add single quotes to description of Vim options
| * | Bump VERSIONTom Ryder2018-11-221-2/+2
| |/
| * Add color definitions to xterm resourcesTom Ryder2018-11-221-0/+18
| |
| * Correct TERM string for xtermTom Ryder2018-11-221-1/+1
| | | | | | | | | | Looks like this went in when the xterm resource type was created; it was probably from when I was experimenting with monochrome terminals.
| * Remove some resources from URxvtTom Ryder2018-11-221-2/+0
| | | | | | | | Neither of these are needed since b456da1.
| * Add Dillo to README.md configuration listTom Ryder2018-11-221-0/+1
| |
| * Add single quotes to description of Vim optionsTom Ryder2018-11-221-4/+4
| |
| * Merge branch 'hotfix/v1.75.1' into developTom Ryder2018-11-222-16/+34
| |\ | | | | | | | | | | | | * hotfix/v1.75.1: Rebuild dotfiles(7df) manual
| * \ Merge branch 'release/v1.75.0' into developTom Ryder2018-11-221-2/+2
| |\ \ | | | | | | | | | | | | | | | | * release/v1.75.0: Bump VERSION
* | \ \ Merge branch 'hotfix/v1.75.1'v1.75.1Tom Ryder2018-11-222-16/+34
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | * hotfix/v1.75.1: Rebuild dotfiles(7df) manual
| * | | Bump VERSIONTom Ryder2018-11-221-2/+2
| | | |
| * | | Rebuild dotfiles(7df) manualTom Ryder2018-11-221-14/+32
|/ / /
* | | Merge branch 'release/v1.75.0'v1.75.0Tom Ryder2018-11-2211-91/+81
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | * release/v1.75.0: Bump VERSION Remove alignment spaces from Newsboat config Remove mpdlrc setup from Xinitrc.d Apply some logic to choose a GUI browser Remove colon alignment from .Xresources subfiles Remove font settings
| * | Bump VERSIONTom Ryder2018-11-221-2/+2
| |/
| * Remove alignment spaces from Newsboat configTom Ryder2018-11-221-16/+16
| |
| * Remove mpdlrc setup from Xinitrc.dTom Ryder2018-11-221-3/+0
| | | | | | | | | | I haven't used it in some time, and it's due to be properly ported to my Music::Lyrics::LRC library.
| * Apply some logic to choose a GUI browserTom Ryder2018-11-221-3/+23
| | | | | | | | | | I'll want to use Dillo if I'm on a machine with limited memory, but the balance tips in favour of Firefox if I have RAM to spare.
| * Remove colon alignment from .Xresources subfilesTom Ryder2018-11-222-40/+40
| |
| * Remove font settingsTom Ryder2018-11-227-27/+0
| | | | | | | | | | | | I'm pretty tired of messing with all these. The defaults are fine, and render nice and quickly; it's just too much of a hassle making it all pixel-perfect, and the anti-aliasing is so often just rubbish.
| * Merge branch 'release/v1.74.0' into developTom Ryder2018-11-221-2/+2
| |\ | | | | | | | | | | | | * release/v1.74.0: Bump VERSION
* | \ Merge branch 'release/v1.74.0'v1.74.0Tom Ryder2018-11-224-2/+27
|\ \ \ | | |/ | |/| | | | | | | | | | * release/v1.74.0: Bump VERSION Add a dillorc file
| * | Bump VERSIONTom Ryder2018-11-221-2/+2
| |/