From 94969a208e9c58592dca1c62452ce4651a289ed9 2007-10-26 21:17:46 From: vivainio Date: 2007-10-26 21:17:46 Subject: [PATCH] ipy_editor.kate() --- diff --git a/IPython/Extensions/ipy_editors.py b/IPython/Extensions/ipy_editors.py index ca96f54..c94027c 100644 --- a/IPython/Extensions/ipy_editors.py +++ b/IPython/Extensions/ipy_editors.py @@ -75,6 +75,10 @@ def gnuclient(exe= 'gnuclient'): install_editor(exe + ' -nw +$line "$file"') def crimson_editor(exe = 'cedt.exe'): - install_editor(exe + ' /L:%line "$file"') + install_editor(exe + ' /L:$line "$file"') + +def kate(exe = 'kate'): + install_editor(exe + ' -u -l $line "$file"') + \ No newline at end of file