1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/atom.md

25 lines
504 B
Markdown
Raw Normal View History

2016-01-21 23:37:14 -05:00
# atom
2016-02-25 22:11:24 +02:00
> A cross-platform pluggable text editor.
> Plugins are managed by `apm`.
2016-01-21 23:37:14 -05:00
- Open a file or folder:
`atom {{path/to/file_or_folder}}`
2016-01-21 23:37:14 -05:00
- Open a file or folder in a new window:
`atom -n {{path/to/file_or_folder}}`
2018-05-03 16:44:38 +01:00
2018-07-24 11:38:29 +02:00
- Open a file or folder in an existing window:
2018-07-24 11:51:48 +02:00
`atom --add {{path/to/file_or_folder}}`
2018-07-24 11:38:29 +02:00
2018-05-03 16:44:38 +01:00
- Open atom in safe mode (does not load any additional packages):
`atom --safe`
- Prevent atom from forking into the background, keeping atom attached to the terminal:
`atom --foreground`