File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.9.10 (February 22, 2019)
2+ * Bug Fixes
3+ * Fixed unit test that hangs on Windows
4+
15## 0.9.9 (February 21, 2019)
26* Bug Fixes
37 * Fixed bug where the `` set `` command was not tab completing from the current `` settable `` dictionary.
Original file line number Diff line number Diff line change @@ -3356,9 +3356,9 @@ def do_edit(self, args: argparse.Namespace) -> None:
33563356 if not self .editor :
33573357 raise EnvironmentError ("Please use 'set editor' to specify your text editing program of choice." )
33583358
3359- command = utils .quote_string_if_needed (self .editor )
3359+ command = utils .quote_string_if_needed (os . path . expanduser ( self .editor ) )
33603360 if args .file_path :
3361- command += " " + utils .quote_string_if_needed (args .file_path )
3361+ command += " " + utils .quote_string_if_needed (os . path . expanduser ( args .file_path ) )
33623362
33633363 self .do_shell (command )
33643364
You can’t perform that action at this time.
0 commit comments