mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	text editor selection: follow unix defacto standards (#356)
Currently, `tea` only supports the $EDITOR env var to open the user's preferred editor (used for reviewing pull requests). Standard \*nix practice is, however, to check for $VISUAL first and only then use $EDITOR as fallback. This is also done by Git itself, see man git-var(1). (Actually, the order there is $GIT_EDITOR > core.editor > $VISUAL > $EDITOR > vi) Co-authored-by: plgruener <pl.gruener@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/356 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: plgruener <plgruener@noreply.gitea.io> Co-committed-by: plgruener <plgruener@noreply.gitea.io>
This commit is contained in:
		| @@ -107,10 +107,13 @@ func ParseDiffComments(diffFile string) ([]gitea.CreatePullReviewComment, error) | ||||
|  | ||||
| // OpenFileInEditor opens filename in a text editor, and blocks until the editor terminates. | ||||
| func OpenFileInEditor(filename string) error { | ||||
| 	editor := os.Getenv("EDITOR") | ||||
| 	editor := os.Getenv("VISUAL") | ||||
| 	if editor == "" { | ||||
| 		fmt.Println("No $EDITOR env is set, defaulting to vim") | ||||
| 		editor = "vim" | ||||
| 		editor = os.Getenv("EDITOR") | ||||
| 		if editor == "" { | ||||
| 			fmt.Println("No $VISUAL or $EDITOR env is set, defaulting to vim") | ||||
| 			editor = "vi" | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// Get the full executable path for the editor. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 plgruener
					plgruener