When in eshell is there a command for opening a file in another buffer?
You can call elisp functions directly. So to open a file, call find-file on the filename. Example:
find-file
~ $ ls myfile ~ $ (find-file "myfile")
Parentheses and quotes are optional, so this works too:
~ $ find-file myfile
1.4m articles
1.4m replys
5 comments
57.0k users