Michael Foley
Michael Foley
The author has set up an official repository at [yegappan/greplace](https://github.com/yegappan/greplace). This unofficial repository can be removed now. [Source](http://www.vim.org/scripts/script.php?script_id=1813) (vim.org)
In my `.vimrc`: ``` vimrc set ignorecase set smartcase ``` My `:Gsearch` buffer results: ``` # # Modify the contents of this buffer and then # use the ":Greplace" command...
Fixes issue #6
Now that [skwp/greplace.vim](https://github.com/skwp/greplace.vim) has been replaced by this official repo, the two projects should be merged. The unofficial one also has some [Issues](https://github.com/skwp/greplace.vim/issues) that should be considered during the merge.
http://www.guoxiang.me/posts/28-how-to-write-a-custom-overcommit-precommit-git-hook-in-4-steps
Developers hate being told to do without justification. Every rule has reasoning behind it, but it is not always obvious.
In Vim, `:cq` works like `:qall!` except that Vim returns a non-zero exit code. A common use is when writing a git commit message, `:cq` is used to abort the...
Since RuboCop is typically slow, it would be great to run asynchronously. An example of a plugin that does this is [vim-rspec](https://github.com/thoughtbot/vim-rspec#custom-command). I tried implementing this myself but I don't...
Reasons: - The Alt key is inconvenient/confusing for most OS X users. Alt is not enabled by default so it needs to be specifically remapped in a terminal application. -...
The "Validation Errors" section of the [readme](https://github.com/JsonApiClient/json_api_client#handling-validation-errors) says that `create` returns a falsey value on errors: ```rb User.create(name: "Bob", email_address: "invalid email") # => false ``` This is incorrect: `create`...