~ellisonbg/ipython/bugfixes0411409

« back to all changes in this revision

Viewing changes to doc/examples/seteditor.py

  • Committer: ville
  • Date: 2008-02-16 09:50:47 UTC
  • mto: (0.12.1 ipython_main)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: ville@ville-pc-20080216095047-500x6dluki1iz40o
initialization (no svn history)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import os
 
2
 
 
3
 
 
4
editor = r'q:/opt/np/notepad++.exe'
 
5
 
 
6
 
 
7
e = os.environ
 
8
 
 
9
e['EDITOR'] = editor
 
10
e['VISUAL'] = editor
 
11
 
 
12
 
 
13
 
 
14
 
 
15