aboutsummaryrefslogtreecommitdiffstats
path: root/autoload
AgeCommit message (Collapse)Author
2014-11-15autoload/auditory.vim: Update Cantina pathNew-SoundsTeddy Wing
Cantina sound files are now in the Resources/Songs/ directory.
2014-11-15autoload/auditory.vim: Update insert mode file listingTeddy Wing
Use the new C# scale files in insert mode for a wider range of notes.
2014-11-10autoload/auditory.vim: Add `dd` supportTeddy Wing
Add support for deleting a line using `dd`. Previously this didn't work because I created a custom operator for the `d` command.
2014-11-09autoload/auditory.vim: Add custom `d` operatorTeddy Wing
Create a custom delete operator that plays the delete sound. NOTES: * Doesn't do `dd` * I just looked at the tcomment plugin source and realised that I should be using plugin mappings so these can be more easily overridden. Make a note to look into that.
2014-11-09autoload/auditory.vim: Add new Cantina audio filesTeddy Wing
Add Spencer's new Cantina audio files to the cantina list. The new audio files are shorter individually (that's why there are more of them). This makes it easier to play the Cantina song at faster or slower ranges of tempos.
2014-11-09autoload/auditory.vim: Enable <space> & <backspace> mappings with FIXMETeddy Wing
Uncomment the space and delete mappings. Note that I had to remove count support on the delete key because it's another one of those that was giving me errors for that.
2014-11-09autoload/auditory.vim: Enable scrolling mappings with FIXMEsTeddy Wing
This way the sounds on scoll commands acutally work. They no longer support counts :( and the <c-b> command for some reason needs to be entered twice in order for it to work. Enable these for now just so we can get the sounds but add FIXMEs so we know that these are borked.
2014-11-09autoload/auditory.vim: Add undo & redo mappingsTeddy Wing
Again had an issue with adding a count to one of the mappings, in this case with redo. Leaving the mapping active except not supporting a count. Hopefully we can figure out how to fix that.
2014-11-09autoload/auditory.vim: Move sound file arrays outside functionsTeddy Wing
Make arrays that store audio filenames script-local variables instead of function-local variables. Doing this because I have a hunch that it will be good for performance, so the arrays don't have to be reinitialised on every execution of the insert mode play functions.
2014-11-09autoload/auditory.vim: Add HML jump mappingsTeddy Wing
2014-11-09autoload/auditory.vim: Fix '0' mappingTeddy Wing
'0' wasn't doing what 0 is normally supposed to do. Modify the mapping to make it work.
2014-11-09Move functions to autoloadTeddy Wing
Clean up functions, move everything into autoload/, move code around a little bit.