salcode / ironcode-vim

A Vim Configuration focused on WordPress development and predominantly used on a Mac with Neovim
9 stars 1 forks source link

Remove unnecessary quotes from #211

Closed salcode closed 3 years ago

salcode commented 3 years ago

Currently, the alias is defined as

recover-rejected-commit = "!f() { git "commit -e --file=$(git rev-parse --git-dir)/COMMIT_EDITMSG"; }; f"

however the inner quotes (") are not needed. The following works instead

recover-rejected-commit = "!f() { git commit -e --file=$(git rev-parse --git-dir)/COMMIT_EDITMSG; }; f"
salcode commented 3 years ago

This issue was opened on the incorrect repo.

The issue on the correct repo is https://github.com/ironcodestudio/ironcode-git-enhancements/issues/132