I'm just learning Sphinx, and I need to edit ReST files. Is there an intelligent editor for it? Like, an editor that gives me code coloration, easy indentation, code completion (hopefully), etc.

link|improve this question
what kind of code completion would you be looking for? I'm in the process of writing a vim plugin for restructured text, so I'd def be interested in that. – Jeff May 18 at 0:38
feedback

8 Answers

Emacs with rst-mode: http://docutils.sourceforge.net/docs/user/emacs.html

link|improve this answer
feedback

vi is very good at this. I was just editing some .rst files right now and it colors the headings, monospaced text, etc. The macros let you very quickly turn text into headings and whatnot.

link|improve this answer
feedback

jEdit also has ReST highlighting, but no ReST specific auto-completion features (it does support macros though).

I would opt for vim or Cream, personally.

link|improve this answer
feedback

Gedit has a ReST plugin which supports syntax highlighting, keyboard shortcuts ("snippets"), and HTML preview.

link|improve this answer
feedback

I use vim and have some useful mappings in my .vimrc:

nnoremap <leader>1 yypVr=
nnoremap <leader>2 yypVr- 
nnoremap <leader>3 yypVr'
nnoremap <leader>4 yypVr`
vmap <silent> <leader>b :call BulletList()<cr>

" Bullet List
function! BulletList()
  let lineno = line(".")
  call setline(lineno, "* " . getline(lineno))
endfunction

And often create vim macros on th fly depending on the file I have to restructure

link|improve this answer
feedback

There is also a rst mode for the Jed editor: http://jedmodes.sf.net/mode/rst/

link|improve this answer
feedback

eclipse has an editor that provides all these features:

http://marketplace.eclipse.org/content/rest-editor

also

http://resteditor.sourceforge.net/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.