Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbruhns/rails-i18n-vim
https://github.com/sbruhns/rails-i18n-vim
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sbruhns/rails-i18n-vim
- Owner: sbruhns
- License: mit
- Created: 2016-06-04T18:29:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-08T19:37:13.000Z (over 8 years ago)
- Last Synced: 2024-02-23T16:26:31.637Z (10 months ago)
- Language: Ruby
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rails-i18n-vim
Some vim helpers for working with i18n and rails. Its under development.
Currently only `:GoToTranslation` is supported. If your currsor is on a `I18n.t()` call you can use `:GoToTranslation` to jump to locale file(you can enter) on the position to the key.
## Requirements
This plugin is written in ruby so Vim has to be compiled with `+ruby`.
On Mac:
- You can use macvim
- or compile vim by your own.On Linux:
- e.g. ubuntu you can use vim-nox
- or compile your own## Installation
Use your plugin manager of choice.
- [Pathogen](https://github.com/tpope/vim-pathogen)
- `git clone https://github.com/sbruhns/rails-i18n-vim ~/.vim/bundle/rails-i18n-vim`
- [Vundle](https://github.com/gmarik/vundle)
- Add `Bundle 'https://github.com/sbruhns/rails-i18n-vim'` to .vimrc
- Run `:BundleInstall`
- [NeoBundle](https://github.com/Shougo/neobundle.vim)
- Add `NeoBundle 'https://github.com/sbruhns/rails-i18n-vim'` to .vimrc
- Run `:NeoBundleInstall`
- [vim-plug](https://github.com/junegunn/vim-plug)
- Add `Plug 'https://github.com/sbruhns/rails-i18n-vim'` to .vimrc
- Run `:PlugInstall`## Contributing
Contributions are welcome via Github pull requests.