| Age | Commit message (Collapse) | Author | 
|---|
|  | Cantina sound files are now in the Resources/Songs/ directory. | 
|  | Use the new C# scale files in insert mode for a wider range of notes. | 
|  | Add support for deleting a line using `dd`. Previously this didn't work
because I created a custom operator for the `d` command. | 
|  | 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. | 
|  | 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. | 
|  | 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. | 
|  | 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. | 
|  | 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. | 
|  | 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. | 
|  |  | 
|  | '0' wasn't doing what 0 is normally supposed to do. Modify the mapping
to make it work. | 
|  | Clean up functions, move everything into autoload/, move code around a
little bit. |