File: search-for-usr-bin-editor.patch

package info (click to toggle)
python-editor 0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 100 kB
  • ctags: 45
  • sloc: python: 185; makefile: 33
file content (16 lines) | stat: -rw-r--r-- 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Search for /usr/bin/editor
Author: Thomas Goirand <zigo@debian.org>
Bug-Debian: https://bugs.debian.org/802232
Forwarded: https://github.com/fmoo/python-editor/pull/5
Last-Update: 2015-12-02

--- python-editor-0.4.orig/editor.py
+++ python-editor-0.4/editor.py
@@ -26,6 +26,7 @@ class EditorError(RuntimeError):
 def get_default_editors():
     # TODO: Make platform-specific
     return [
+        'editor',
         'vim',
         'emacs',
         'nano',