Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: gclient_utils.py

Issue 14854003: Make git-cl more accurately imitate git's editor selection process, and respect $VISUAL. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | git_cl.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index ddcce9b17746568b242c6fead28287c1ea834c5f..2d846758263cb206906dac2fd76ebb1b1029de3b 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -678,23 +678,29 @@ class ExecutionQueue(object):
work_queue.ready_cond.release()
-def GetEditor(git):
+def GetEditor(git, git_editor=None):
"""Returns the most plausible editor to use."""
+ terminal = os.environ.get('TERM')
+ terminal_is_dumb = not terminal or terminal == 'dumb'
if git:
- editor = os.environ.get('GIT_EDITOR')
+ editor = os.environ.get('GIT_EDITOR') or git_editor
else:
editor = os.environ.get('SVN_EDITOR')
+ if not editor and not (git and terminal_is_dumb):
+ editor = os.environ.get('VISUAL')
if not editor:
editor = os.environ.get('EDITOR')
if not editor:
- if sys.platform.startswith('win'):
+ if git and terminal_is_dumb:
+ editor = None
M-A Ruel 2013/05/02 14:13:48 You assume we're going to call git here?
jbroman 2013/05/02 14:27:30 I did this for completeness. git-commit (et al) i
M-A Ruel 2013/05/02 14:35:17 I'd prefer to document it then. There's no referen
+ elif sys.platform.startswith('win'):
editor = 'notepad'
else:
editor = 'vim'
return editor
-def RunEditor(content, git):
+def RunEditor(content, git, git_editor=None):
"""Opens up the default editor in the system to get the CL description."""
file_handle, filename = tempfile.mkstemp(text=True)
# Make sure CRLF is handled properly by requiring none.
@@ -707,7 +713,10 @@ def RunEditor(content, git):
fileobj.close()
try:
- cmd = '%s %s' % (GetEditor(git), filename)
+ editor = GetEditor(git, git_editor=git_editor)
+ if not editor:
+ return None
+ cmd = '%s %s' % (editor, filename)
if sys.platform == 'win32' and os.environ.get('TERM') == 'msys':
# Msysgit requires the usage of 'env' to be present.
cmd = 'env ' + cmd
« no previous file with comments | « no previous file | git_cl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698