↧
Answer by Rodolfo Carvalho for Go to line in Atom editor from command line
Atom can open files and go to a specific line/column from the command line by appending :line_number or :line_number:column_number to the file name/path.Examples:atom README.md:58atom...
View ArticleAnswer by Steve Ross for Go to line in Atom editor from command line
The proper format for doing this is the following:filename.txt:linenumberexample:atom /your/path/to/the/file.txt:208
View ArticleAnswer by Pavan for Go to line in Atom editor from command line
Atom commands are similar to Visual Studio and sublime text in this scenario. First press the Ctrl+G in your keyboard then you will redirect to command line in the Atom editor, then type line number to...
View ArticleGo to line in Atom editor from command line
Most editors allow you to pass an argument when opening a file from the command line to go to a specific line number (and column) in the file.How can I do this with Atom?
View Article
More Pages to Explore .....