1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Add Open The Gemfile as a vim til

This commit is contained in:
jbranchaud
2016-03-12 07:44:21 -06:00
parent 564f4d4d0e
commit 3327d999b7
2 changed files with 16 additions and 1 deletions

14
vim/open-the-gemfile.md Normal file
View File

@@ -0,0 +1,14 @@
# Open The Gemfile
One of the central files to any Ruby or Rails project is the `Gemfile`. When
it is time to add or remove a Gem, that is the place to go. The
[`vim-bundler`](https://github.com/tpope/vim-bundler) plugin allows you to
quickly navigate to the project's `Gemfile` by entering the following
command:
```
:Bopen
```
That command is primarily used for navigating to the source of a particular
Gem, but when used alone, it pops open the `Gemfile`.