All public logs
Jump to navigation
Jump to search
Combined display of all available logs of LemonWiki共筆. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:53, 30 April 2026 Planetoid talk contribs created page Open Files in a GUI Editor from the Terminal (Created page with "How to open files with your favorite editor from the terminal? 1. Open your shell config file: <pre> vi ~/.zshrc # for zsh vi ~/.bashrc # for bash </pre> 2. Add an alias for your editor: <pre> # VS Code alias code="open -a 'Visual Studio Code'" <pre> Tip: Not sure of the exact app name? Run this to find it: <pre> ls /Applications/ | grep -i "visual\|cursor\|zed\|sublime" </pre> The name must exactly match the `.app` filename in `/Applications/` (without the `.ap...")