0.0
No commit activity in last 3 years
No release in over 3 years
This is a Sinatra app that integrates Google Chrome with GVim via the Edit with Emacs extension.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.3.2
~> 0.6.0
~> 1.3.4
~> 1.5.0
 Project Readme

EditServer

EditServer is a small Sinatra app that works in conjunction with Edit with Emacs to integrate GVim with your browser. Simply install the gem (gem install edit_server) and kick off the daemon (edit-server start). Use Edit with Emacs as documented. To kill the EditServer daemon, run edit-server stop.

Furthermore, HTML formatting in the text area (such as the text in a Gmail e-mail) is converted to Github Flavored Markdown for easy editing. The text is converted back to HTML when translated back to Chrome.

Requirements

  • pandoc 1.10.1.1 - At the time of writing, you need to make a custom build of pandoc since the lastest distributed version lacks support for a Github Flavored Markdown reader. Make sure the executable is available in your path.

Installation

Install edit_server:

$ gem install edit_server

Start the daemon:

$ edit-server start

To stop the Sinatra app:

$ edit-server stop

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request