Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdonaldson/writegooder
a vim plugin that helps you write gooder
https://github.com/jdonaldson/writegooder
Last synced: about 1 month ago
JSON representation
a vim plugin that helps you write gooder
- Host: GitHub
- URL: https://github.com/jdonaldson/writegooder
- Owner: jdonaldson
- Created: 2015-01-07T20:39:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-15T22:10:18.000Z (almost 10 years ago)
- Last Synced: 2023-03-11T08:13:00.178Z (almost 2 years ago)
- Language: VimL
- Size: 145 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WriteGooder
A simple wrapper around the [write-good](https://github.com/btford/write-good)
english language "linter". This version comes with a single command :
```
:WriteGooder
```This will execute the write-good script on the current document and populate
and open the quickfix window.There is another version of this script available from
[writeGood.vim](https://github.com/davidbeckingsale/writegood.vim). The main
difference is that this version loads errors into a quickfix window, rather than
overriding the syntax coloring for the given file type. It's a bit less
intrusive this way.# Install with Pathogen
1. Install pathogen using the [instructions][pathogen].
2. Create/cd into `~/.vim/bundle/`
3. Make a clone of the repo:
`git clone https://github.com/jdonaldson/writeGooder.git`To update:
1. cd into `~/.vim/bundle/writeGooder/`
2. git pull# Install with Vundle
1. Install vundle using the [instructions][vundle]
2. Add writeGooder to your plugin list in `.vimrc` and re-source it:
`Plugin 'jdonaldson/writeGooder'`
3. Run `:PluginInstall`To update, just run `:PluginUpdate`
# Install with VAM
1. Install VAM using the [instructions][vam]
2. Add writeGooder to the list of your activated bundles and re-source it:
`call vam#ActivateAddons(['github:jdonaldson/writeGooder'])`[pathogen]:https://github.com/tpope/vim-pathogen
[vundle]:https://github.com/gmarik/vundle
[vam]:https://github.com/MarcWeber/vim-addon-manager