aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-12-13README: Update with a note about `:b`HEADmasterTeddy Wing
Found out recently that `:b` can take a buffer name (or partial buffer name in particular) argument, which kind of obviates the need for this plugin. Add a note about this to the README.
2014-12-13Add helptagsTeddy Wing
2014-12-13Add docsTeddy Wing
Create a helpfile for real vim documentation.
2014-11-27plugin/ls_grep.vim: Don't reload the plugin if already loadedTeddy Wing
Learning to become a good plugin citizen.
2014-11-24README: fix installation clone URLTeddy Wing
Copied the text from the auditory.vim README and didn't read it carefully. I forgot to replace the git clone URL with the one for ls-grep.
2014-11-23Add READMETeddy Wing
Basic explanation of what the plugin does, usage, and installation instructions. Still need to write a Vim help file.
2014-11-23Add LICENSETeddy Wing
MIT license.
2014-11-23Move `LsGrep` function to autoload/Teddy Wing
* Change filename to use an underscore (in order to be able to use it in the autoload function name) * Split the function and the command between autoload and plugin files
2014-11-23ls-grep.vim: Require unquoted search term argumentTeddy Wing
The argument passed into the command must now not be quoted. To add spaces, use backslash escaping. EDIT: Actually, it turns out you don't need to backslash escape spaces. Okay, so just don't quote your argument. That works nicely.
2014-11-23ls-grep.vim: Add some comments to the `LsGrep` functionTeddy Wing
2014-11-23ls-grep.vim: Use case-insensitive grep searchTeddy Wing
Makes it quicker.
2014-11-23ls-grep.vim: Pass command args to `LsGrep` functionTeddy Wing
Allow searching using the :LsGrep command. The argument passed into the comand currently needs to be a string (wrapped in quotes). Hoping to make that optional.
2014-11-23ls-grep.vim: Allow a search stringTeddy Wing
Add capability to search for an arbitrary string.
2014-11-23Initial commit. Proof of concept.Teddy Wing
Get :ls output and grep it.