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

26 lines
554 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`.
2019-04-11 13:28:09 -03:00
> Homepage: <https://atom.io/>.
2016-01-21 23:37:14 -05:00
- Open a file or directory:
2016-01-21 23:37:14 -05:00
`atom {{path/to/file_or_directory}}`
2016-01-21 23:37:14 -05:00
- Open a file or directory in a new window:
2016-01-21 23:37:14 -05:00
`atom -n {{path/to/file_or_directory}}`
2018-05-03 16:44:38 +01:00
- Open a file or directory in an existing window:
2018-07-24 11:38:29 +02:00
`atom --add {{path/to/file_or_directory}}`
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`