Skip to content

Commit 5b5f80e

Browse files
committed
Delete atom from list of editors since it was deprecated in Dec 2022
1 parent 7fe289a commit 5b5f80e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def find_editor() -> str | None:
306306
if sys.platform[:3] == 'win':
307307
editors = ['code.cmd', 'notepad++.exe', 'notepad.exe']
308308
else:
309-
editors = ['vim', 'vi', 'emacs', 'nano', 'pico', 'joe', 'code', 'subl', 'atom', 'gedit', 'geany', 'kate']
309+
editors = ['vim', 'vi', 'emacs', 'nano', 'pico', 'joe', 'code', 'subl', 'gedit', 'kate']
310310

311311
# Get a list of every directory in the PATH environment variable and ignore symbolic links
312312
env_path = os.getenv('PATH')

0 commit comments

Comments
 (0)